浏览代码

add space to propper logging the failing method name

pull/259/head
Juan Pablo Giménez 6 年前
父节点
当前提交
1397284160
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      modules/core/core.py

+ 1
- 1
modules/core/core.py 查看文件

@@ -485,7 +485,7 @@ class CraftBeerPi(ActorAPI, SensorAPI):
try:
method(self)
except Exception as e:
self.app.logger.error("Exception" + method.__name__ + ": " + str(e))
self.app.logger.error("Exception " + method.__name__ + ": " + str(e))
self.socketio.sleep(interval)




正在加载...
取消
保存