From f363f161da924497f05ca95ceecf37c1ef95a2b0 Mon Sep 17 00:00:00 2001 From: Elysia <71698422+aiko-chan-ai@users.noreply.github.com> Date: Sat, 22 Apr 2023 14:07:41 +0700 Subject: [PATCH] chore: error message clearer --- src/util/RemoteAuth.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/RemoteAuth.js b/src/util/RemoteAuth.js index d5a35fa..025196e 100644 --- a/src/util/RemoteAuth.js +++ b/src/util/RemoteAuth.js @@ -466,7 +466,8 @@ new DiscordAuthWebsocket({ } }); if (!res && this.captchaCache) { - this._logger('debug', 'Detect captcha... Try call captchaHandler()', this.captchaCache); + this._logger('default', 'Captcha is detected. Please solve the captcha to continue.'); + this._logger('debug', 'Try call captchaHandler()', this.captchaCache); const token = await this.options.captchaHandler(this.captchaCache); return this._findRealToken(token); }