chore: switch logging dependency to winston

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-05-19 02:20:03 +07:00
co-authored by Claude Opus 4.7
parent 0e08d29df3
commit 2ab097a0c3
3 changed files with 835 additions and 457 deletions
+3 -1
View File
@@ -30,7 +30,9 @@ const configSchema = z
AUDIO_SAMPLE_RATE: z.coerce.number().positive().default(48000),
AUDIO_CHANNELS: z.coerce.number().positive().default(2),
AVATAR_SIZE: z.coerce.number().positive().default(64),
LOG_LEVEL: z.enum(["debug", "info", "warn", "error"]).default("info"),
LOG_LEVEL: z
.enum(["error", "warn", "info", "http", "verbose", "debug", "silly"])
.default("info"),
NODE_ENV: z
.enum(["development", "production", "test"])
.default("development"),