fixed log levels
This commit is contained in:
parent
eb66086b2a
commit
2678ad90d4
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ export const serviceConfigSchema = z.object({
|
||||||
|
|
||||||
// Logging configuration
|
// Logging configuration
|
||||||
export const loggingConfigSchema = z.object({
|
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'),
|
format: z.enum(['json', 'pretty']).default('json'),
|
||||||
loki: z.object({
|
loki: z.object({
|
||||||
enabled: z.boolean().default(false),
|
enabled: z.boolean().default(false),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue