From: paulfantom Date: Tue, 21 Jun 2016 18:37:42 +0000 (+0200) Subject: more meaningful error msg when importing module X-Git-Tag: v1.3.0~110^2~1 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69602e13372e8da912a517c476ea6a55fa137ac1;p=netdata.git more meaningful error msg when importing module --- diff --git a/plugins.d/python.d.plugin b/plugins.d/python.d.plugin index 4a334284..d661495f 100755 --- a/plugins.d/python.d.plugin +++ b/plugins.d/python.d.plugin @@ -167,7 +167,7 @@ class PythonCharts(object): else: return imp.load_source(name, path) except Exception as e: - debug(str(e)) + debug("Problem loading", name, str(e)) return None def _load_modules(self, path, modules, disabled):