diff --git a/src/decrypt-worker/worker/decrypt.ts b/src/decrypt-worker/worker/decrypt.ts index 1b7ee96..0567f21 100644 --- a/src/decrypt-worker/worker/decrypt.ts +++ b/src/decrypt-worker/worker/decrypt.ts @@ -31,6 +31,7 @@ class DecryptCommandHandler { const [result, error] = await go(this.tryDecryptWith(decipher)); if (!error) { if (result) { + console.debug(`[${decipher.cipherName}] Decryption OK`); return result; } errors.push(`${decipher.cipherName}: no response`);