Skip to content

Commit

Permalink
Change .info calls to .debug for quieter UX (#4121)
Browse files Browse the repository at this point in the history
  • Loading branch information
akarve authored Aug 24, 2024
1 parent abaeb4f commit 9705683
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/python/quilt3/data_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def _copy_file_list_internal(file_list, results, message, callback, exceptions_t
if not file_list:
return []

logger.info('copy files: started')
logger.debug('copy files: started')

assert len(file_list) == len(results)

Expand Down Expand Up @@ -709,7 +709,7 @@ def done_callback(value, checksum):
# Make sure all tasks exit quickly if the main thread exits before they're done.
stopped = True

logger.info('copy files: finished')
logger.debug('copy files: finished')

return results

Expand Down
4 changes: 2 additions & 2 deletions api/python/quilt3/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ def _calculate_missing_hashes(self):
"""
Calculate and set missing hash values
"""
logger.info('fix package hashes: started')
logger.debug('fix package hashes: started')

self._incomplete_entries = [entry for key, entry in self.walk() if entry.hash is None]

Expand All @@ -1001,7 +1001,7 @@ def _calculate_missing_hashes(self):
msg = "Unable to reach S3 for some hash values. Incomplete manifest saved to {path}."
raise PackageException(msg.format(path=incomplete_manifest_path)) from exc

logger.info('fix package hashes: finished')
logger.debug('fix package hashes: finished')

def _set_commit_message(self, msg):
"""
Expand Down

0 comments on commit 9705683

Please sign in to comment.