summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-10-17 16:46:42 -0300
committerTomás Touceda <chiiph@leap.se>2013-10-17 16:46:42 -0300
commit1419774261610a004a64288f87e1dff7805fdcfd (patch)
treef1fefd8a0967a457e446d82bbdfffc32961e57a1
parent01f8f956a02991f0b91b95b9c0caf310ff6ee32c (diff)
Do not log mail docs content
-rw-r--r--changes/bug_donot_log_mail_docs1
-rw-r--r--src/leap/mail/imap/fetch.py3
2 files changed, 2 insertions, 2 deletions
diff --git a/changes/bug_donot_log_mail_docs b/changes/bug_donot_log_mail_docs
new file mode 100644
index 0000000..5619d8a
--- /dev/null
+++ b/changes/bug_donot_log_mail_docs
@@ -0,0 +1 @@
+ o Do not log mail doc contents. \ No newline at end of file
diff --git a/src/leap/mail/imap/fetch.py b/src/leap/mail/imap/fetch.py
index 2a430a0..0a71f53 100644
--- a/src/leap/mail/imap/fetch.py
+++ b/src/leap/mail/imap/fetch.py
@@ -215,8 +215,7 @@ class LeapIncomingMail(object):
docs_cb = []
for index, doc in enumerate(doclist):
- logger.debug("processing doc %d of %d: %s" % (
- index, num_mails, doc))
+ logger.debug("processing doc %d of %d" % (index, num_mails))
leap_events.signal(
IMAP_MSG_PROCESSING, str(index), str(num_mails))
keys = doc.content.keys()