mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix: ensure successful startup is logged
The default log level is 'warning', so we log the final startup message as warning to ensure it is visible by default. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
0693812e8b
commit
170977baa9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ async function bootstrap(): Promise<void> {
|
|||
|
||||
// Start the server
|
||||
await app.listen(appConfig.port);
|
||||
logger.log(`Listening on port ${appConfig.port}`, 'AppBootstrap');
|
||||
logger.warn(`Listening on port ${appConfig.port}`, 'AppBootstrap');
|
||||
}
|
||||
|
||||
void bootstrap();
|
||||
|
|
Loading…
Reference in a new issue