diff options
| author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-02-07 19:45:47 +0300 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-07 11:45:47 -0500 |
| commit | f113312ef22846ed6414f53de3acf4ce27eff40a (patch) | |
| tree | eb6dda89bc459d64b3e05b81423216625ebc49c6 /log | |
| parent | dc1cef498f4f9b704bf83e7173234262bf11ee44 (diff) | |
Add missiong copyright headers (denoland/deno_std#177)
Original: https://github.com/denoland/deno_std/commit/54403774955af0bb5618c0ca6e12c57ec7d5fd0a
Diffstat (limited to 'log')
| -rw-r--r-- | log/handlers.ts | 1 | ||||
| -rw-r--r-- | log/handlers_test.ts | 1 | ||||
| -rw-r--r-- | log/levels.ts | 1 | ||||
| -rw-r--r-- | log/logger.ts | 1 | ||||
| -rw-r--r-- | log/logger_test.ts | 1 | ||||
| -rw-r--r-- | log/mod.ts | 1 | ||||
| -rw-r--r-- | log/test.ts | 1 |
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"; |
