wrap log statement in try

pull/146/head
jbruce 2022-07-06 07:43:59 -04:00
rodzic be7f8bdc1e
commit 3a3bcf99eb
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -61,7 +61,10 @@ class Watcher(object):
if self.has_errors():
self.bad_checks = self.bad_checks + 1
else:
log.info("OK temp=%0.2f target=%0.2f error=%0.2f" % (self.stats['ispoint'],self.stats['setpoint'],self.stats['err']))
try:
log.info("OK temp=%0.2f target=%0.2f error=%0.2f" % (self.stats['ispoint'],self.stats['setpoint'],self.stats['err']))
except:
pass
if self.bad_checks >= self.bad_check_limit:
msg = "error kiln needs help. %s" % json.dumps(self.stats,indent=2, sort_keys=True)