]> arthur.barton.de Git - netdata.git/commitdiff
remove debugging info
authorpaulfantom <paulfantom@gmail.com>
Fri, 8 Jul 2016 08:33:09 +0000 (10:33 +0200)
committerpaulfantom <paulfantom@gmail.com>
Fri, 8 Jul 2016 08:33:09 +0000 (10:33 +0200)
python.d/sensors.chart.py

index b805b1bf0d659c6a2a978b8ace7a70cc45f962ac..edfe125dbd94babefafc1570f566eab55bc3b088 100644 (file)
@@ -108,7 +108,6 @@ class Service(SimpleService):
             ORDER = list(self.configuration['types'])
         except (KeyError, TypeError):
             self.error("No path to log specified. Using all sensor types.")
-        print(ORDER)
         try:
             sensors.init()
         except Exception as e:
@@ -116,8 +115,7 @@ class Service(SimpleService):
             return False
         try:
             self._create_definitions()
-        except Exception as e:
-            print(e)
+        except:
             return False
 
         if len(self.definitions) == 0: