From aaf58ca1093b41882d7db793f0cfe617db4a940d Mon Sep 17 00:00:00 2001 From: roadscape Date: Mon, 4 Feb 2019 12:46:54 -0600 Subject: [PATCH] adjust skipped-ids logging --- hive/indexer/cached_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive/indexer/cached_post.py b/hive/indexer/cached_post.py index 23ae213ff..4247226f6 100644 --- a/hive/indexer/cached_post.py +++ b/hive/indexer/cached_post.py @@ -354,8 +354,8 @@ def _bump_last_id(cls, next_id): gap = next_id - last_id - 1 if gap: + log.info("skipped %d ids %d -> %d", gap, last_id, next_id) cls._ensure_safe_gap(last_id, next_id) - log.warning("skipped %d posts %d -> %d", gap, last_id, next_id) cls._last_id = next_id