summaryrefslogtreecommitdiff
path: root/log
diff options
context:
space:
mode:
Diffstat (limited to 'log')
-rw-r--r--log/handlers.ts1
-rw-r--r--log/handlers_test.ts1
-rw-r--r--log/levels.ts1
-rw-r--r--log/logger.ts1
-rw-r--r--log/logger_test.ts1
-rw-r--r--log/mod.ts1
-rw-r--r--log/test.ts1
7 files changed, 7 insertions, 0 deletions
diff --git a/log/handlers.ts b/log/handlers.ts
index c39102c8e..9241bd77e 100644
--- a/log/handlers.ts
+++ b/log/handlers.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { open, File, Writer } from "deno";
import { getLevelByName } from "./levels.ts";
import { LogRecord } from "./logger.ts";
diff --git a/log/handlers_test.ts b/log/handlers_test.ts
index bbdf6e0a5..52eca16ea 100644
--- a/log/handlers_test.ts
+++ b/log/handlers_test.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { assertEqual, test } from "../testing/mod.ts";
import { LogRecord, Logger } from "./logger.ts";
import { LogLevel, getLevelName, getLevelByName } from "./levels.ts";
diff --git a/log/levels.ts b/log/levels.ts
index 52d28aea5..3fc866161 100644
--- a/log/levels.ts
+++ b/log/levels.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
export const LogLevel = {
NOTSET: 0,
DEBUG: 10,
diff --git a/log/logger.ts b/log/logger.ts
index 9f34f9c32..678d5ed94 100644
--- a/log/logger.ts
+++ b/log/logger.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { LogLevel, getLevelByName, getLevelName } from "./levels.ts";
import { BaseHandler } from "./handlers.ts";
diff --git a/log/logger_test.ts b/log/logger_test.ts
index 2456e9fc2..a2275a00b 100644
--- a/log/logger_test.ts
+++ b/log/logger_test.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { assertEqual, test } from "../testing/mod.ts";
import { LogRecord, Logger } from "./logger.ts";
import { LogLevel } from "./levels.ts";
diff --git a/log/mod.ts b/log/mod.ts
index 821c2f82a..96dc81ff1 100644
--- a/log/mod.ts
+++ b/log/mod.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { Logger } from "./logger.ts";
import {
BaseHandler,
diff --git a/log/test.ts b/log/test.ts
index 3d803cc0c..f9ab4222e 100644
--- a/log/test.ts
+++ b/log/test.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { assertEqual, test } from "../testing/mod.ts";
import * as log from "./mod.ts";
import { BaseHandler } from "./handlers.ts";