summaryrefslogtreecommitdiff
path: root/log
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-08-24 10:38:18 -0700
committerGitHub <noreply@github.com>2019-08-24 10:38:18 -0700
commit4d997d4e2239adb0d982245271e43938443e871f (patch)
tree72153ebc09bd34a7389e8d3b294fe776fd16606f /log
parente933a8a0e10f46e6128b277eaadd7ae733a92eeb (diff)
Move colors to fmt (denoland/deno_std#571)
Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a
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;