diff --git a/lib/extension/bridge.ts b/lib/extension/bridge.ts index 5a9c8e60d..2e32d307f 100644 --- a/lib/extension/bridge.ts +++ b/lib/extension/bridge.ts @@ -119,6 +119,7 @@ export default class Bridge extends Extension { await this.mqtt.publish(`bridge/response/${match[1]}`, stringify(response)); } catch (error) { logger.error(`Request '${data.topic}' failed with error: '${error.message}'`); + logger.debug(error.stack); const response = utils.getResponse(message, {}, error.message); await this.mqtt.publish(`bridge/response/${match[1]}`, stringify(response)); }