From f113312ef22846ed6414f53de3acf4ce27eff40a Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Thu, 7 Feb 2019 19:45:47 +0300 Subject: Add missiong copyright headers (denoland/deno_std#177) Original: https://github.com/denoland/deno_std/commit/54403774955af0bb5618c0ca6e12c57ec7d5fd0a --- log/handlers.ts | 1 + log/handlers_test.ts | 1 + log/levels.ts | 1 + log/logger.ts | 1 + log/logger_test.ts | 1 + log/mod.ts | 1 + log/test.ts | 1 + 7 files changed, 7 insertions(+) (limited to 'log') 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"; -- cgit v1.2.3