We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53138c commit 640c422Copy full SHA for 640c422
1 file changed
src/components/core/handler/ddoHandler.ts
@@ -105,7 +105,11 @@ export class DecryptDdoHandler extends CommandHandler {
105
const existingNonce = await dbNonce.retrieve(decrypterAddress)
106
107
if (existingNonce && existingNonce.nonce === nonce) {
108
- CORE_LOGGER.logMessage(`Decrypt DDO: error ${task.nonce} duplicate nonce`, true)
+ CORE_LOGGER.log(
109
+ LOG_LEVELS_STR.LEVEL_ERROR,
110
+ `Decrypt DDO: duplicate nonce error decryptor addr ${decrypterAddress} nonce ${task.nonce} `,
111
+ true
112
+ )
113
return {
114
stream: null,
115
status: {
0 commit comments