Skip to content

Commit

Permalink
Fix / Dydx debug logging outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHolyRoger committed Apr 1, 2021
1 parent b78f84c commit c97ff8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async def _track_single_book(self, trading_pair: str):
elif message.type is OrderBookMessageType.SNAPSHOT:
s_bids, s_asks = active_order_tracker.convert_snapshot_message_to_order_book_row(message)
order_book.apply_snapshot(s_bids, s_asks, int(message.timestamp))
self.logger().debug("Processed order book snapshot for %s.", trading_pair)
self.logger().debug(f"Processed order book snapshot for {trading_pair}.")

except asyncio.CancelledError:
raise
Expand Down

0 comments on commit c97ff8b

Please sign in to comment.