diff --git a/entrypoint.sh b/entrypoint.sh index 46cef185..f8bf9060 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -6,7 +6,7 @@ # - `cli`: Starts the CLI, sends all arguments to it # Exit immediately if a command exits with a non-zero status. -set -euo +set -eu cd /app/dist diff --git a/packages/log-manager/index.ts b/packages/log-manager/index.ts index 48cc350f..0924f7bb 100644 --- a/packages/log-manager/index.ts +++ b/packages/log-manager/index.ts @@ -30,9 +30,9 @@ export class LogManager { private enableColors = false, private prettyDates = false, ) { - void this.write( + /* void this.write( `--- INIT LogManager at ${new Date().toISOString()} ---`, - ); + ); */ } getLevelColor(level: LogLevel) {