diff options
author | Neil Johnson <neil@matrix.org> | 2019-06-20 15:14:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-20 15:14:26 +0100 |
commit | f47969f42a4ff70bdc58cf88c6e9f46370696c9c (patch) | |
tree | 399d04ed9c59420abf91ab075ae2487618e9e61c /synapse/push | |
parent | Run Black. (#5482) (diff) | |
download | synapse-f47969f42a4ff70bdc58cf88c6e9f46370696c9c.tar.xz |
Improve email notification logging (#5502)
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/mailer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py index 17c7d3195a..809199fe88 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py @@ -256,7 +256,7 @@ class Mailer(object): multipart_msg.attach(text_part) multipart_msg.attach(html_part) - logger.info("Sending email push notification to %s" % email_address) + logger.info("Sending email notification to %s" % email_address) yield make_deferred_yieldable( self.sendmail( |