From bfab4ed0dfa5e2034005133a257201c934bc3a80 Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Thu, 2 Jan 2020 15:13:47 -0500 Subject: Happy new year! (#3578) --- std/log/handlers.ts | 2 +- std/log/handlers_test.ts | 2 +- std/log/levels.ts | 2 +- std/log/logger.ts | 2 +- std/log/logger_test.ts | 2 +- std/log/mod.ts | 2 +- std/log/test.ts | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'std/log') diff --git a/std/log/handlers.ts b/std/log/handlers.ts index 93bdd3edd..32b0525e7 100644 --- a/std/log/handlers.ts +++ b/std/log/handlers.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. const { open } = Deno; type File = Deno.File; type Writer = Deno.Writer; diff --git a/std/log/handlers_test.ts b/std/log/handlers_test.ts index 329541fa1..bfba4f840 100644 --- a/std/log/handlers_test.ts +++ b/std/log/handlers_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { test } from "../testing/mod.ts"; import { assertEquals } from "../testing/asserts.ts"; import { LogLevel, getLevelName, getLevelByName } from "./levels.ts"; diff --git a/std/log/levels.ts b/std/log/levels.ts index 20cafb205..599629f85 100644 --- a/std/log/levels.ts +++ b/std/log/levels.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. export const LogLevel: Record = { NOTSET: 0, DEBUG: 10, diff --git a/std/log/logger.ts b/std/log/logger.ts index 482743b23..99d17ef48 100644 --- a/std/log/logger.ts +++ b/std/log/logger.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { LogLevel, getLevelByName, getLevelName } from "./levels.ts"; import { BaseHandler } from "./handlers.ts"; diff --git a/std/log/logger_test.ts b/std/log/logger_test.ts index d8d205c08..2385ac378 100644 --- a/std/log/logger_test.ts +++ b/std/log/logger_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { test } from "../testing/mod.ts"; import { assertEquals } from "../testing/asserts.ts"; import { LogRecord, Logger } from "./logger.ts"; diff --git a/std/log/mod.ts b/std/log/mod.ts index 3f34d7f1d..6006b73e1 100644 --- a/std/log/mod.ts +++ b/std/log/mod.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { Logger } from "./logger.ts"; import { BaseHandler, diff --git a/std/log/test.ts b/std/log/test.ts index 5a17f9a35..a970d10ba 100644 --- a/std/log/test.ts +++ b/std/log/test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { test } from "../testing/mod.ts"; import { assertEquals } from "../testing/asserts.ts"; import * as log from "./mod.ts"; -- cgit v1.2.3