mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
use warning level for when email_log cannot be parsed
This commit is contained in:
parent
b7b4c07cd3
commit
5ea3d1bd42
1 changed files with 1 additions and 3 deletions
|
@ -1086,9 +1086,7 @@ def handle_bounce(contact: Contact, alias: Alias, msg: Message, user: User):
|
|||
try:
|
||||
email_log_id = int(get_header_from_bounce(msg, _EMAIL_LOG_ID_HEADER))
|
||||
except Exception:
|
||||
LOG.exception(
|
||||
"cannot get email log id from bounce report, %s", refused_email
|
||||
)
|
||||
LOG.warning("cannot get email log id from bounce report, %s", refused_email)
|
||||
else:
|
||||
email_log = EmailLog.get(email_log_id)
|
||||
|
||||
|
|
Loading…
Reference in a new issue