Skip to content

Commit

Permalink
downgrade "queue full" message from warning to debug (#576)
Browse files Browse the repository at this point in the history
closes #476
  • Loading branch information
beniwohli committed Aug 29, 2019
1 parent 446c8f4 commit 5905cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elasticapm/transport/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def queue(self, event_type, data, flush=False):
self._event_queue.put((event_type, data, flush), block=False, **kwargs)

except compat.queue.Full:
logger.warning("Event of type %s dropped due to full event queue", event_type)
logger.debug("Event of type %s dropped due to full event queue", event_type)

def _process_queue(self):
buffer = self._init_buffer()
Expand Down

0 comments on commit 5905cb8

Please sign in to comment.