From 5ef32635f7efe93670972712fb1ed6218a2303bd Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Fri, 27 Dec 2019 20:00:35 +0100 Subject: [PATCH] adjusted startup message for interval --- pyfan.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfan.py b/pyfan.py index cf092d1..6857d1e 100644 --- a/pyfan.py +++ b/pyfan.py @@ -133,7 +133,8 @@ class PyFan: for zone in self.config["thermalzones"]: self.zones.append(ThermalZone(zone, self.hwmon_map)) - logging.getLogger("pyfan").info("Finished creating %d thermal zones." % len(self.zones)) + logging.getLogger("pyfan").info( + "Finished creating %d thermal zones, checking all %d seconds" % (len(self.zones), self.interval)) def __enter__(self): return self