mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-23 23:48:16 +01:00
check error
This commit is contained in:
parent
e12d437ed0
commit
d7ff5ca712
1 changed files with 5 additions and 3 deletions
|
@ -158,9 +158,11 @@ class SystemController:
|
||||||
for entry in j:
|
for entry in j:
|
||||||
result.append(entry['MESSAGE'])
|
result.append(entry['MESSAGE'])
|
||||||
logging.error(result)
|
logging.error(result)
|
||||||
|
try:
|
||||||
with open(fullname, 'w') as f:
|
with open(fullname, 'w') as f:
|
||||||
f.write(result)
|
f.write(result)
|
||||||
|
except Exception as e:
|
||||||
|
logging.error(e)
|
||||||
|
|
||||||
plugins = await self.plugins_list()
|
plugins = await self.plugins_list()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue