more logging
This commit is contained in:
parent
3ade1a816a
commit
22737e5797
@ -259,10 +259,16 @@ class Server extends EventEmitter
|
|||||||
this.#logger.info('Initialising memory storage provider');
|
this.#logger.info('Initialising memory storage provider');
|
||||||
await this.#memoryStoreProvider.init();
|
await this.#memoryStoreProvider.init();
|
||||||
|
|
||||||
|
this.#logger.info('Initialising user database');
|
||||||
await this.#userDatabase.init();
|
await this.#userDatabase.init();
|
||||||
|
|
||||||
await this.#messageBroker?.init();
|
if (this.#messageBroker)
|
||||||
|
{
|
||||||
|
this.#logger.info('Initialising message broker');
|
||||||
|
await this.#messageBroker.init();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#logger.info('Initialising flag manager');
|
||||||
await this.#flagManager.init();
|
await this.#flagManager.init();
|
||||||
|
|
||||||
this.#logger.info('Loading endpoints');
|
this.#logger.info('Loading endpoints');
|
||||||
|
Loading…
Reference in New Issue
Block a user