/** * Log levels in order of severity (lowest to highest) */ export type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'fatal';