diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-02 15:13:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 15:13:47 -0500 |
commit | bfab4ed0dfa5e2034005133a257201c934bc3a80 (patch) | |
tree | cd53471ad241770d3cd9a9da6246463d92e0ebeb /std/log | |
parent | b0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff) |
Happy new year! (#3578)
Diffstat (limited to 'std/log')
-rw-r--r-- | std/log/handlers.ts | 2 | ||||
-rw-r--r-- | std/log/handlers_test.ts | 2 | ||||
-rw-r--r-- | std/log/levels.ts | 2 | ||||
-rw-r--r-- | std/log/logger.ts | 2 | ||||
-rw-r--r-- | std/log/logger_test.ts | 2 | ||||
-rw-r--r-- | std/log/mod.ts | 2 | ||||
-rw-r--r-- | std/log/test.ts | 2 |
7 files changed, 7 insertions, 7 deletions
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<string, number> = { 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"; |