From 12ff2c07e47b89703fac7ff73fe058959124a128 Mon Sep 17 00:00:00 2001 From: dgw Date: Tue, 5 Oct 2021 02:16:50 -0500 Subject: [PATCH] coretasks: emit log entry if SASL auth aborts --- sopel/coretasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sopel/coretasks.py b/sopel/coretasks.py index 380da14d14..97a9a7b6e5 100644 --- a/sopel/coretasks.py +++ b/sopel/coretasks.py @@ -1066,6 +1066,7 @@ def auth_proceed(bot, trigger): return else: # Not an expected response from the server + LOGGER.warning("Aborting SASL: unexpected server reply '%s'" % trigger) # Send `authenticate-abort` command # See https://ircv3.net/specs/extensions/sasl-3.1#the-authenticate-command bot.write(('AUTHENTICATE', '*'))