Skip to content

Commit

Permalink
Move failed post parsing log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanC committed Aug 7, 2024
1 parent 6bb3cb4 commit 9841e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/x.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def GetUserPosts(
}
)
except Exception as e:
logger.opt(exception=e).warning(f"[@{username}] Failed to parse post")
logger.opt(exception=e).debug(f"[@{username}] Failed to parse post")

# Sort the array from oldest to newest.
posts = sorted(posts, key=itemgetter("timestamp"))
Expand Down

0 comments on commit 9841e43

Please sign in to comment.