1
mirror of https://github.com/thepeacockproject/Peacock synced 2025-02-16 16:34:28 +01:00

Linter fix

This commit is contained in:
Govert de Gans 2024-06-23 13:31:12 +02:00
parent e2704a28bd
commit a02db73d8b

View File

@ -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")
}
}