Skip to content

Commit

Permalink
Add data service debugging message
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Easterbrook <jim@jim-easterbrook.me.uk>
  • Loading branch information
jim-easterbrook committed Aug 23, 2018
1 parent ae83eab commit 01fe824
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pywws/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '18.8.0'
_release = '1578'
_commit = '76ce5a9'
_release = '1579'
_commit = 'ae83eab'
1 change: 1 addition & 0 deletions src/pywws/service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ def queue_data(self, timestamp, data, live):
self.template_file.seek(0)
prepared_data = eval('{' + data_str + '}')
prepared_data.update(self.fixed_data)
self.logger.debug('data: %s', str(prepared_data))
self.queue.append((timestamp, prepared_data, live))
if timestamp:
self.last_update = timestamp
Expand Down

0 comments on commit 01fe824

Please sign in to comment.