Make the refresh a debug output, not info

This commit is contained in:
Stephan Kulow 2022-11-16 09:05:16 +01:00
parent d311d54f26
commit 4692d47120

View File

@ -208,7 +208,7 @@ class Importer:
if key in self.refreshed_packages:
# refreshing once is good enough
return
logging.info(f"Refresh {project}/{package}")
logging.debug(f"Refresh {project}/{package}")
self.refreshed_packages.add(key)
self.update_db_package(project, package)
self.fetch_all_linked_packages(project, package)