Skip to content

Commit

Permalink
fix: update log levelfrom debug to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Mat001 committed Jul 27, 2021
1 parent 4aad6b7 commit beebb79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimizely/event/event_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def process(self, user_event):
try:
self.event_queue.put_nowait(user_event)
except queue.Full:
self.logger.debug(
self.logger.warning(
'Payload not accepted by the queue. Current size: {}'.format(str(self.event_queue.qsize()))
)

Expand Down

0 comments on commit beebb79

Please sign in to comment.