Browse Source

add space to propper logging the failing method name

pull/237/head
Juan Pablo Giménez 6 years ago
parent
commit
d56f8992a5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/core/core.py

+ 1
- 1
modules/core/core.py View File

@@ -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)




Loading…
Cancel
Save