diff --git a/package.json b/package.json index 4dcfb9a..333ce49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@extollo/lib", - "version": "0.9.8", + "version": "0.9.9", "description": "The framework library that lifts up your code.", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/src/support/bus/Bus.ts b/src/support/bus/Bus.ts index ec6b3b3..5ae2efd 100644 --- a/src/support/bus/Bus.ts +++ b/src/support/bus/Bus.ts @@ -199,7 +199,8 @@ export class Bus extends Unit implements EventBus< const config = this.config.get('server.bus', {}) if ( Array.isArray(config.connectors) ) { for ( const connector of (config.connectors as BusConnectorConfig[]) ) { - this.logging.info(`Creating bus connection of type: ${connector.type}`) + this.logging.verbose(`Creating bus connection of type: ${connector.type}`) + this.logging.verbose(new Error().stack) if ( connector.type === 'redis' ) { await this.connect(this.make(RedisBus)) }