mirror of
https://github.com/thepeacockproject/Peacock
synced 2025-02-16 16:34:28 +01:00
Linter fix
This commit is contained in:
parent
e2704a28bd
commit
a02db73d8b
@ -1050,8 +1050,12 @@ export class ChallengeService extends ChallengeRegistry {
|
||||
)
|
||||
}
|
||||
} catch (e) {
|
||||
log(LogLevel.ERROR, `Error while handling challenge ${challengeId}:`)
|
||||
log(LogLevel.ERROR, (e as Error).stack ?? e);
|
||||
log(
|
||||
LogLevel.ERROR,
|
||||
`Error while handling challenge ${challengeId}:`,
|
||||
"ChallengeService",
|
||||
)
|
||||
log(LogLevel.ERROR, (e as Error).stack ?? e, "ChallengeService")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user