Skip to content

Commit

Permalink
Improved logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
theypsilon committed Feb 11, 2025
1 parent 2ade5a1 commit 3b1656a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/downloader/file_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def precache_is_file_with_folders(self, folders: List[PathPackage], recheck: boo
try:
self._shared_state.add_many_files([f.path for folder_pkg in not_checked_folders for f in os.scandir(folder_pkg.full_path) if f.is_file()])
except Exception as e:
self._logger.debug(e)
self._logger.debug('precache_is_file_with_folders error:', e)
for folder_pkg in not_checked_folders:
try:
self._shared_state.add_many_files([f.path for f in os.scandir(folder_pkg.full_path) if f.is_file()])
Expand Down

0 comments on commit 3b1656a

Please sign in to comment.