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

code_spécifique_watcha
Michael Kaye 5 years ago committed by GitHub
parent ff5604e7f1
commit 5308239d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/7295.misc
  2. 9
      synapse/rest/media/v1/preview_url_resource.py

@ -0,0 +1 @@
Reduce log verbosity of url cache cleanup tasks.

@ -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):
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):
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):

Loading…
Cancel
Save