From bdd98749469a71007c39ce4ec8724af5a1049a15 Mon Sep 17 00:00:00 2001 From: petrucci4prez Date: Tue, 13 Jun 2017 02:49:36 -0400 Subject: [PATCH] makes more sense to have this as debug --- sensors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensors.py b/sensors.py index 1147922..0214f3d 100644 --- a/sensors.py +++ b/sensors.py @@ -25,7 +25,7 @@ def lowPassFilter(pin, targetVal, period=0.001): return GPIO.input(pin) == targetVal def _initGPIO(name, pin, GPIOEvent, callback): - logger.info('setting up \"%s\" on pin %s', name, pin) + logger.debug('starting \"%s\" on pin %s', name, pin) GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_DOWN) GPIO.add_event_detect(pin, GPIOEvent, callback=callback, bouncetime=500)