Skip to content

Commit dfc25e7

Browse files
committed
Dependency upgrade.
1 parent 55207c2 commit dfc25e7

File tree

3 files changed

+211
-312
lines changed

3 files changed

+211
-312
lines changed

lib/util/LoggerUtil.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ export class LoggerUtil {
1111
format.label(),
1212
format.colorize(),
1313
format.label({ label }),
14-
format.printf(info => {
14+
format.printf(infoUnknown => {
15+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
16+
const info = infoUnknown as {[key: string | symbol]: any}
1517
if(info[SPLAT]) {
1618
if(info[SPLAT].length === 1 && info[SPLAT][0] instanceof Error) {
1719
const err: Error = info[SPLAT][0]

0 commit comments

Comments
 (0)