mirror of https://github.com/zulip/zulip.git
python: Use format string for logging str(obj).
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
fcd81a8473
commit
b45484573e
|
@ -94,7 +94,7 @@ def fix_unsubscribed(cursor: CursorWrapper, user_profile: UserProfile) -> None:
|
|||
rows = cursor.fetchall()
|
||||
for row in rows:
|
||||
recipient_ids.append(row[0])
|
||||
logger.info(str(recipient_ids))
|
||||
logger.info("%s", recipient_ids)
|
||||
|
||||
get_timing(
|
||||
"get recipients",
|
||||
|
|
|
@ -289,9 +289,7 @@ def send_email(
|
|||
)
|
||||
raise EmailNotDeliveredException
|
||||
except smtplib.SMTPException as e:
|
||||
logger.exception(
|
||||
"Error sending %s email to %s: %s", template, mail.to, str(e), stack_info=True
|
||||
)
|
||||
logger.exception("Error sending %s email to %s: %s", template, mail.to, e, stack_info=True)
|
||||
raise EmailNotDeliveredException
|
||||
|
||||
|
||||
|
|
|
@ -958,7 +958,7 @@ class EmbeddedBotWorker(QueueProcessingWorker):
|
|||
bot_handler=self.get_bot_api_client(user_profile),
|
||||
)
|
||||
except EmbeddedBotQuitException as e:
|
||||
logging.warning(str(e))
|
||||
logging.warning("%s", e)
|
||||
|
||||
|
||||
@assign_queue("deferred_work")
|
||||
|
|
|
@ -1822,12 +1822,12 @@ class SocialAuthMixin(ZulipAuthMixin, ExternalAuthMethod, BaseAuth):
|
|||
# the flow or the IdP is unreliable and returns a bad http response),
|
||||
# don't throw a 500, just send them back to the
|
||||
# login page and record the event at the info log level.
|
||||
self.logger.info("%s: %s", type(e).__name__, str(e))
|
||||
self.logger.info("%s: %s", type(e).__name__, e)
|
||||
return None
|
||||
except SocialAuthBaseException as e:
|
||||
# Other python-social-auth exceptions are likely
|
||||
# interesting enough that we should log a warning.
|
||||
self.logger.warning(str(e))
|
||||
self.logger.warning("%s", e)
|
||||
return None
|
||||
|
||||
def should_auto_signup(self) -> bool:
|
||||
|
|
Loading…
Reference in New Issue