Skip to content

Commit

Permalink
Downgrade / remove some logging messages
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 Sep 3, 2018
1 parent 00a047f commit 556e9bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/pywws/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '18.8.0'
_release = '1626'
_commit = '24e0686'
__version__ = '18.9.0'
_release = '1627'
_commit = '00a047f'
2 changes: 1 addition & 1 deletion src/pywws/service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def upload_batch(self):
self.queue.popleft()
self.context.status.set('pending', self.service_name, repr(pending))
if count > 1:
self.logger.warning('{:d} uploads'.format(count))
self.logger.info('{:d} uploads'.format(count))
elif count:
self.logger.info('1 upload')
return OK
Expand Down
1 change: 0 additions & 1 deletion src/pywws/service/weathercloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ def __init__(self, context, check_params=True):
#calc "usaheatindex(data['temp_in'], data['hum_in'])"
"'heatin' : '%.0f'," "" "scale(x, 10.0)"#
"""
logger.debug('template: %s', self.template)
# add thw function to templater
self.templater.thw = thw

Expand Down

0 comments on commit 556e9bc

Please sign in to comment.