From 4d997d4e2239adb0d982245271e43938443e871f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 24 Aug 2019 10:38:18 -0700 Subject: Move colors to fmt (denoland/deno_std#571) Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a --- log/handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'log') 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; -- cgit v1.2.3