Skip to content

Commit

Permalink
Fix settings logger name
Browse files Browse the repository at this point in the history
  • Loading branch information
titilambert committed Aug 21, 2017
1 parent 495ad5d commit 961341c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tuxeatpi_common/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, component):
# TODO use only one client !!
self.etcd_sender = etcd.Client(host=self.host, port=self.port)
self.etcd_client = aio_etcd.Client(host=self.host, port=self.port)
self.logger = logging.getLogger(name="tep").getChild(component.name).getChild('config')
self.logger = logging.getLogger(name="tep").getChild(component.name).getChild('settings')
self.language = None
self.nlu_engine = None
self.params = {}
Expand Down

0 comments on commit 961341c

Please sign in to comment.