parsers: changed print to log.debug

This commit is contained in:
Rob McMullen 2017-07-07 12:20:47 -07:00
parent 27c38a3ec8
commit 864fc14545
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ def parsers_for_filename(name):
parsers = mime_parsers[mime]
found = None
for parser in parsers:
print("parser: %s = %s" % (mime, parser))
log.debug("parser: %s = %s" % (mime, parser))
matches.append(StandardDeliveryImage)
return matches