Skip to content

Commit 5905cb8

Browse files
authored
downgrade "queue full" message from warning to debug (#576)
closes #476
1 parent 446c8f4 commit 5905cb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elasticapm/transport/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def queue(self, event_type, data, flush=False):
109109
self._event_queue.put((event_type, data, flush), block=False, **kwargs)
110110

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

114114
def _process_queue(self):
115115
buffer = self._init_buffer()

0 commit comments

Comments
 (0)