adjusted startup message for interval

This commit is contained in:
2019-12-27 20:00:35 +01:00
parent 8d95e69048
commit 5ef32635f7

View File

@@ -133,7 +133,8 @@ class PyFan:
for zone in self.config["thermalzones"]: for zone in self.config["thermalzones"]:
self.zones.append(ThermalZone(zone, self.hwmon_map)) 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): def __enter__(self):
return self return self