Skip to content

Commit

Permalink
adjust skipped-ids logging
Browse files Browse the repository at this point in the history
  • Loading branch information
roadscape committed Feb 5, 2019
1 parent 7f671ab commit aaf58ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hive/indexer/cached_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit aaf58ca

Please sign in to comment.