0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-53749 Reduce info logging on SCons cache pruning script

This commit is contained in:
Brian McCarthy 2021-01-13 12:43:35 -05:00 committed by Evergreen Agent
parent 715bd6fd2e
commit 5d359ecbcc

View File

@ -91,7 +91,6 @@ def prune_cache(cache_path, cache_size_gb, clean_ratio):
else:
try:
os.remove(to_remove)
LOGGER.info("removed file from cache: %s", cache_item.path)
total_size -= cache_item.size
except Exception as err: # pylint: disable=broad-except
# this should not happen, but who knows?