Skip to content

Commit 6c2c6e2

Browse files
Merge pull request #104 from BitGo/WP-5497/logging-recovery-mode
feat(awm,mbe): add info log on recovery mode
2 parents 36ac2de + 2e1ceb2 commit 6c2c6e2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/advancedWalletManagerApp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export function startup(config: AdvancedWalletManagerConfig, baseUri: string): (
3434
logger.info(`Port: ${config.port}`);
3535
logger.info(`Bind: ${config.bind}`);
3636
logger.info(`KMS URL: ${config.kmsUrl}`);
37+
logger.info(`Recovery Mode: ${config.recoveryMode}`);
3738
logger.info('Advanced Wallet Manager started successfully');
3839
};
3940
}

src/masterBitGoExpressApp.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export function startup(config: MasterExpressConfig, baseUri: string): () => voi
2727
logger.info(`TLS Mode: ${config.tlsMode}`);
2828
logger.info(`Port: ${config.port}`);
2929
logger.info(`Bind: ${config.bind}`);
30+
logger.info(`Recovery Mode: ${config.recoveryMode}`);
3031
logger.info(`Advanced Wallet Manager URL: ${config.advancedWalletManagerUrl}`);
3132
logger.info('Master Express server started successfully');
3233
};

0 commit comments

Comments
 (0)