Skip to content

Commit

Permalink
Update message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuzmik committed Nov 26, 2024
1 parent c993692 commit a70aae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdks/python/src/opik/message_processing/queue_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def _loop(self) -> None:
return

start_time = time.time()
LOGGER.debug("Worker thread: started processing message %s", message)
LOGGER.debug("Worker thread: started processing message")
self._message_processor.process(message)
LOGGER.debug("Worker thread: finished processing message %s, it took %s seconds", message, time.time() - start_time)
LOGGER.debug("Worker thread: finished processing message, it took %s seconds", time.time() - start_time)
except queue.Empty:
time.sleep(SLEEP_BETWEEN_LOOP_ITERATIONS)
except Exception:
Expand Down

0 comments on commit a70aae4

Please sign in to comment.