Index: email2trac.py.in =================================================================== --- email2trac.py.in (revision 632) +++ email2trac.py.in (working copy) @@ -2001,7 +2001,7 @@ match = STRIP_RE.match(line) if match: - print line + self.logger.debug('\t"%s " matched, skipping rest of message' %line) continue except UnicodeDecodeError: @@ -2010,7 +2010,7 @@ match = STRIP_RE.match(tmp_line) if match: - print line + self.logger.debug('\t"%s " matched, skipping rest of message' %line) continue body.append(line)