diff --git a/atst/queue.py b/atst/queue.py index 3f2d3042..f519a55c 100644 --- a/atst/queue.py +++ b/atst/queue.py @@ -47,8 +47,8 @@ class ATSTQueue(RQ): @classmethod def _send_notification_mail(self, recipients, subject, body): app.logger.info( - "Sending a notification to these recipients: {}\n\n{}".format( - recipients, body + "Sending a notification to these recipients: {}\n\nSubject: {}\n\n{}".format( + recipients, subject, body ) ) app.mailer.send(recipients, subject, body)