wrap log statement in try
This commit is contained in:
parent
be7f8bdc1e
commit
3a3bcf99eb
@ -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)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user