Quieter logging of ImportError.

This commit is contained in:
David Wilson 2016-08-11 14:57:31 +01:00
parent fa0beffac2
commit 8216edd755
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class ModuleResponder(object):
reply = (is_pkg, present, path, compressed)
self._context.Enqueue(reply_to, reply)
except Exception:
LOG.exception('While importing %r', fullname)
LOG.debug('While importing %r', fullname, exc_info=True)
self._context.Enqueue(reply_to, None)