Skip to content

Commit

Permalink
Fix / Kraken debug logging outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHolyRoger committed Apr 1, 2021
1 parent 24ca92a commit 1578e00
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ async def _order_book_diff_router(self):
# Log some statistics.
now: float = time.time()
if int(now / 60.0) > int(last_message_timestamp / 60.0):
self.logger().debug("Diff messages processed: %d, rejected: %d",
messages_accepted,
messages_rejected)
self.logger().debug(f"Diff messages processed: {messages_accepted}, rejected: {messages_rejected}")
messages_accepted = 0
messages_rejected = 0

Expand Down

0 comments on commit 1578e00

Please sign in to comment.