fixed log levels

This commit is contained in:
Boki 2025-06-18 19:34:09 -04:00
parent eb66086b2a
commit 2678ad90d4

View file

@ -17,7 +17,7 @@ export const serviceConfigSchema = z.object({
// Logging configuration
export const loggingConfigSchema = z.object({
level: z.enum(['trace', 'debug', 'info', 'warn', 'error', 'fatal']).default('info'),
level: z.enum(['debug', 'info', 'warn', 'error']).default('info'),
format: z.enum(['json', 'pretty']).default('json'),
loki: z.object({
enabled: z.boolean().default(false),