diff options
Diffstat (limited to 'std/log/mod.ts')
-rw-r--r-- | std/log/mod.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/std/log/mod.ts b/std/log/mod.ts index 2f068f8ba..4032937a2 100644 --- a/std/log/mod.ts +++ b/std/log/mod.ts @@ -8,9 +8,12 @@ import { RotatingFileHandler, } from "./handlers.ts"; import { assert } from "../testing/asserts.ts"; +import { LevelName } from "./levels.ts"; + +export { LogLevels } from "./levels.ts"; export class LoggerConfig { - level?: string; + level?: LevelName; handlers?: string[]; } |