diff --git a/reviewboard/notifications/email.py b/reviewboard/notifications/email.py
index 65f067d2150e56731b3664ef95ee46a989707ff4..5f8155dfca0d1bd2f530c118b25a1b21cf6f0a59 100644
--- a/reviewboard/notifications/email.py
+++ b/reviewboard/notifications/email.py
@@ -297,14 +297,12 @@ def send_review_mail(user, review_request, subject, in_reply_to,
                                  list(cc_field), in_reply_to, headers)
     try:
         message.send()
-    except Exception as e:
-        logging.error("Error sending e-mail notification with subject '%s' on "
-                      "behalf of '%s' to '%s': %s",
-                      subject.strip(),
-                      from_email,
-                      ','.join(list(to_field) + list(cc_field)),
-                      e,
-                      exc_info=1)
+    except Exception:
+        logging.exception("Error sending e-mail notification with subject "
+                          "'%s' on behalf of '%s' to '%s'",
+                          subject.strip(),
+                          from_email,
+                          ','.join(list(to_field) + list(cc_field)))
 
     return message.message_id
 
