Remove bloat in logs, remove -o flag in entrypoint

This commit is contained in:
Jesse Wierzbinski 2024-04-14 03:27:50 -10:00
parent 939d93bfda
commit 402c3ad926
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@
# - `cli`: Starts the CLI, sends all arguments to it # - `cli`: Starts the CLI, sends all arguments to it
# Exit immediately if a command exits with a non-zero status. # Exit immediately if a command exits with a non-zero status.
set -euo set -eu
cd /app/dist cd /app/dist

View file

@ -30,9 +30,9 @@ export class LogManager {
private enableColors = false, private enableColors = false,
private prettyDates = false, private prettyDates = false,
) { ) {
void this.write( /* void this.write(
`--- INIT LogManager at ${new Date().toISOString()} ---`, `--- INIT LogManager at ${new Date().toISOString()} ---`,
); ); */
} }
getLevelColor(level: LogLevel) { getLevelColor(level: LogLevel) {