summaryrefslogtreecommitdiff
path: root/log
diff options
context:
space:
mode:
Diffstat (limited to 'log')
-rw-r--r--log/handlers.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/log/handlers.ts b/log/handlers.ts
index 1f68e9794..5dfd0caa4 100644
--- a/log/handlers.ts
+++ b/log/handlers.ts
@@ -4,7 +4,7 @@ type File = Deno.File;
type Writer = Deno.Writer;
import { getLevelByName, LogLevel } from "./levels.ts";
import { LogRecord } from "./logger.ts";
-import { red, yellow, blue, bold } from "../colors/mod.ts";
+import { red, yellow, blue, bold } from "../fmt/colors.ts";
const DEFAULT_FORMATTER = "{levelName} {msg}";
type FormatterFunction = (logRecord: LogRecord) => string;