kopia lustrzana https://github.com/jbruce12000/kiln-controller
wrap log statement in try
rodzic
1e97db2e22
commit
6209d61b48
|
@ -61,7 +61,10 @@ class Watcher(object):
|
||||||
if self.has_errors():
|
if self.has_errors():
|
||||||
self.bad_checks = self.bad_checks + 1
|
self.bad_checks = self.bad_checks + 1
|
||||||
else:
|
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:
|
if self.bad_checks >= self.bad_check_limit:
|
||||||
msg = "error kiln needs help. %s" % json.dumps(self.stats,indent=2, sort_keys=True)
|
msg = "error kiln needs help. %s" % json.dumps(self.stats,indent=2, sort_keys=True)
|
||||||
|
|
Ładowanie…
Reference in New Issue