Skip to content
Snippets Groups Projects
Unverified Commit 5308239d authored by Michael Kaye's avatar Michael Kaye Committed by GitHub
Browse files

Reduce logging verbosity of URL cache cleanup. (#7295)

parent ff5604e7
No related branches found
No related tags found
No related merge requests found
Reduce log verbosity of url cache cleanup tasks.
...@@ -402,7 +402,7 @@ class PreviewUrlResource(DirectServeResource): ...@@ -402,7 +402,7 @@ class PreviewUrlResource(DirectServeResource):
now = self.clock.time_msec() now = self.clock.time_msec()
logger.info("Running url preview cache expiry") logger.debug("Running url preview cache expiry")
if not (await self.store.db.updates.has_completed_background_updates()): if not (await self.store.db.updates.has_completed_background_updates()):
logger.info("Still running DB updates; skipping expiry") logger.info("Still running DB updates; skipping expiry")
...@@ -435,6 +435,8 @@ class PreviewUrlResource(DirectServeResource): ...@@ -435,6 +435,8 @@ class PreviewUrlResource(DirectServeResource):
if removed_media: if removed_media:
logger.info("Deleted %d entries from url cache", len(removed_media)) logger.info("Deleted %d entries from url cache", len(removed_media))
else:
logger.debug("No entries removed from url cache")
# Now we delete old images associated with the url cache. # Now we delete old images associated with the url cache.
# These may be cached for a bit on the client (i.e., they # These may be cached for a bit on the client (i.e., they
...@@ -481,7 +483,10 @@ class PreviewUrlResource(DirectServeResource): ...@@ -481,7 +483,10 @@ class PreviewUrlResource(DirectServeResource):
await self.store.delete_url_cache_media(removed_media) await self.store.delete_url_cache_media(removed_media)
logger.info("Deleted %d media from url cache", len(removed_media)) if removed_media:
logger.info("Deleted %d media from url cache", len(removed_media))
else:
logger.debug("No media removed from url cache")
def decode_and_calc_og(body, media_uri, request_encoding=None): def decode_and_calc_og(body, media_uri, request_encoding=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment