瀏覽代碼

fix(home-server): add log leve information to starting the home server information

Karol Sójko 2 年之前
父節點
當前提交
49c27924ea
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/home-server/src/Server/HomeServer.ts

+ 1 - 1
packages/home-server/src/Server/HomeServer.ts

@@ -151,7 +151,7 @@ export class HomeServer implements HomeServerInterface {
 
       this.serverInstance = server.build().listen(port)
 
-      logger.info(`Server started on port ${port}`)
+      logger.info(`Server started on port ${port}. Log level: ${env.get('LOG_LEVEL', true)}.`)
 
       return Result.ok('Server started.')
     } catch (error) {