Skip to content

Commit

Permalink
Reduce logging debug from file uploads
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 25, 2018
1 parent ff13cf0 commit 4f6cb2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 = '1596'
_commit = '83d1505'
_release = '1597'
_commit = 'ff13cf0'
2 changes: 1 addition & 1 deletion src/pywws/service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def upload_batch(self):
path = upload
else:
path = os.path.join(self.context.output_dir, upload)
self.logger.warning('file: %s', path)
self.logger.debug('file: %s', path)
OK, message = self.upload_file(session, path)
self.log(message)
if OK:
Expand Down

0 comments on commit 4f6cb2f

Please sign in to comment.