UNPKG

@plastichub/osr-log

Version:

Package basics

13 lines (12 loc) 301 B
import { z } from 'zod' export const TLogLevelNameSchema = z.enum(["silly", "trace", "debug", "info", "warn", "error", "fatal"]) export type LogLevel = z.infer<typeof TLogLevelNameSchema> export enum LogLevelEx { silly, trace, debug, info, warn, error, fatal }