summaryrefslogtreecommitdiff
path: root/logging/handler.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-23 18:49:46 -0500
committerGitHub <noreply@github.com>2018-12-23 18:49:46 -0500
commit7143f7d86043c05f0b4a303a41c29ea90b87dc63 (patch)
tree01641b145ee36d161e81e68466843f4f3e2c9985 /logging/handler.ts
parent0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (diff)
Make compatible with latest deno (denoland/deno_std#41)
Original: https://github.com/denoland/deno_std/commit/0772030f5d08c97744dc0d3d102dec437464bc28
Diffstat (limited to 'logging/handler.ts')
-rw-r--r--logging/handler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging/handler.ts b/logging/handler.ts
index 2d76f5a78..3c5bbe10c 100644
--- a/logging/handler.ts
+++ b/logging/handler.ts
@@ -1,4 +1,4 @@
-import { getLevelByName } from "./levels";
+import { getLevelByName } from "./levels.ts";
export class BaseHandler {
level: number;