summaryrefslogtreecommitdiff
path: root/std/log
diff options
context:
space:
mode:
Diffstat (limited to 'std/log')
-rw-r--r--std/log/handlers.ts2
-rw-r--r--std/log/handlers_test.ts2
-rw-r--r--std/log/levels.ts2
-rw-r--r--std/log/logger.ts2
-rw-r--r--std/log/logger_test.ts2
-rw-r--r--std/log/mod.ts2
-rw-r--r--std/log/mod_test.ts2
-rw-r--r--std/log/test.ts2
8 files changed, 8 insertions, 8 deletions
diff --git a/std/log/handlers.ts b/std/log/handlers.ts
index c538de380..acfb16641 100644
--- a/std/log/handlers.ts
+++ b/std/log/handlers.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { getLevelByName, LevelName, LogLevels } from "./levels.ts";
import type { LogRecord } from "./logger.ts";
import { blue, bold, red, yellow } from "../fmt/colors.ts";
diff --git a/std/log/handlers_test.ts b/std/log/handlers_test.ts
index 52c1edb64..a8e3a3df2 100644
--- a/std/log/handlers_test.ts
+++ b/std/log/handlers_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
assert,
assertEquals,
diff --git a/std/log/levels.ts b/std/log/levels.ts
index ed6010ba2..6b748e992 100644
--- a/std/log/levels.ts
+++ b/std/log/levels.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/** Get log level numeric values through enum constants
*/
export enum LogLevels {
diff --git a/std/log/logger.ts b/std/log/logger.ts
index 7ef23977a..bd8d8cce5 100644
--- a/std/log/logger.ts
+++ b/std/log/logger.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { getLevelByName, getLevelName, LogLevels } from "./levels.ts";
import type { LevelName } from "./levels.ts";
import type { BaseHandler } from "./handlers.ts";
diff --git a/std/log/logger_test.ts b/std/log/logger_test.ts
index b01d1dc5d..bfaa653c9 100644
--- a/std/log/logger_test.ts
+++ b/std/log/logger_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals, assertMatch } from "../testing/asserts.ts";
import { Logger, LogRecord } from "./logger.ts";
import { LevelName, LogLevels } from "./levels.ts";
diff --git a/std/log/mod.ts b/std/log/mod.ts
index 8469d50cb..31fc9aaee 100644
--- a/std/log/mod.ts
+++ b/std/log/mod.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { Logger } from "./logger.ts";
import type { GenericFunction } from "./logger.ts";
import {
diff --git a/std/log/mod_test.ts b/std/log/mod_test.ts
index f2467ef68..7823042e7 100644
--- a/std/log/mod_test.ts
+++ b/std/log/mod_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../testing/asserts.ts";
import {
critical,
diff --git a/std/log/test.ts b/std/log/test.ts
index 23eac7ff4..1966824e1 100644
--- a/std/log/test.ts
+++ b/std/log/test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertEquals, assertThrows } from "../testing/asserts.ts";
import * as log from "./mod.ts";
import {