Skip to content

Commit

Permalink
Not sure why I logged like that
Browse files Browse the repository at this point in the history
  • Loading branch information
scrapbird committed Mar 4, 2018
1 parent c4d9a89 commit dbe51dc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions smtpd/src/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,12 @@ async def store_email(self, subject, to_address_list, from_address, body, date_s
"""

logger.debug("-" * 80)
logger.debug("Subject: {}".format(subject))
logger.debug("to_address_list: {}".format(to_address_list))
logger.debug("from_address: {}".format(from_address))
logger.debug("body: {}".format(body))
logger.debug("attachments: {}".format(attachments))
logger.debug("date_sent: {}".format(date_sent))
logger.debug("Subject: %s", subject)
logger.debug("to_address_list: %s", to_address_list)
logger.debug("from_address: %s", from_address)
logger.debug("body: %s", body)
logger.debug("attachment count: %s", len(attachments))
logger.debug("date_sent: %s", date_sent)
logger.debug("-" * 80)

async with self.postgres.acquire() as conn:
Expand Down

0 comments on commit dbe51dc

Please sign in to comment.