From 1572c7788204cfde46ef029c84e5e598eaabcbb9 Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 11 Mar 2024 12:43:37 +0300 Subject: [PATCH] remove-logs --- services/cache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/cache.py b/services/cache.py index 7669b510..11990439 100644 --- a/services/cache.py +++ b/services/cache.py @@ -66,6 +66,7 @@ async def update_follows_for_author( else: # Remove the entity from follows follows = [e for e in follows if e['id'] != entity['id']] + logger.debug(f'{entity} removed from follows') if entity_type == 'topic': await set_follows_topics_cache(follows, follower.id) if entity_type == 'author':