This commit is contained in:
Dax Raad
2025-07-24 09:24:22 -04:00
parent fb59b64b96
commit 6357869e81
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { Global } from "../global"
import z from "zod"
export namespace Log {
export const Level = z.enum(["DEBUG", "INFO", "WARN", "ERROR"]).openapi({ ref: "LogLevel", description: "Log level" })
export const Level = z.enum(["DEBUG", "INFO", "WARN", "ERROR"])
export type Level = z.infer<typeof Level>
const levelPriority: Record<Level, number> = {