mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
Remove bloat in logs, remove -o flag in entrypoint
This commit is contained in:
parent
939d93bfda
commit
402c3ad926
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue