From 8216edd75532132a7c3ad6a8917c7c6ed67f856b Mon Sep 17 00:00:00 2001 From: David Wilson Date: Thu, 11 Aug 2016 14:57:31 +0100 Subject: [PATCH] Quieter logging of ImportError. --- econtext/master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/econtext/master.py b/econtext/master.py index 677065a2..863b8222 100644 --- a/econtext/master.py +++ b/econtext/master.py @@ -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)