We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55207c2 commit dfc25e7Copy full SHA for dfc25e7
lib/util/LoggerUtil.ts
@@ -11,7 +11,9 @@ export class LoggerUtil {
11
format.label(),
12
format.colorize(),
13
format.label({ label }),
14
- format.printf(info => {
+ format.printf(infoUnknown => {
15
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
16
+ const info = infoUnknown as {[key: string | symbol]: any}
17
if(info[SPLAT]) {
18
if(info[SPLAT].length === 1 && info[SPLAT][0] instanceof Error) {
19
const err: Error = info[SPLAT][0]
0 commit comments