diff --git a/ts/challenge.ts b/ts/challenge.ts index 9a22a39e41..9ac039ac3c 100644 --- a/ts/challenge.ts +++ b/ts/challenge.ts @@ -267,7 +267,11 @@ export class ChallengeHandler { data.options?.includes('recaptcha') ) ) { - log.error(`${logId}: unexpected options ${JSON.stringify(data.options)}`); + const dataString = JSON.stringify(data.options); + log.error( + `${logId}: unexpected options ${dataString}. ${conversationId} is waiting.` + ); + return; } if (!challenge.token) {