export const logLevel = { debug: 0, info: 1, warning: 2, error: 3, }; export type Level = "debug" | "error" | "warning" | "info";