diff --git a/src/config.ts b/src/config.ts index a20956f..2d7bca6 100644 --- a/src/config.ts +++ b/src/config.ts @@ -7,7 +7,7 @@ const ConfigSchema = z.object({ mcp: z.object({ host: z.string().default('127.0.0.1'), port: z.number().default(19017), - logLevel: z.enum(['debug', 'info', 'warn', 'error']).default('info'), + logLevel: z.enum(['debug', 'info', 'warn', 'error', 'silent']).default('info'), }), nats: z.object({ url: z.string().default('nats://localhost:4222'),