Remove debug log of "processing metric"

This is just way too noisy and provides zero value.
This commit is contained in:
Dave Shawley 2023-07-27 08:32:03 -04:00
parent 76399b9a02
commit a63733dcad
No known key found for this signature in database
GPG key ID: F41A8A99298F8EED
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Next
----
- Removed debug-level logging of processing metric
:tag:`1.0.0 <0.1.0...1.0.0>` (20-Jul-2021) :tag:`1.0.0 <0.1.0...1.0.0>` (20-Jul-2021)
------------------------------------------ ------------------------------------------
- Added ``Connector.timer`` method (addresses :issue:`8`) - Added ``Connector.timer`` method (addresses :issue:`8`)

View file

@ -636,7 +636,6 @@ class Processor:
try: try:
metric = await asyncio.wait_for(self.queue.get(), metric = await asyncio.wait_for(self.queue.get(),
self._wait_timeout) self._wait_timeout)
self.logger.debug('received %r from queue', metric)
self.queue.task_done() self.queue.task_done()
except asyncio.TimeoutError: except asyncio.TimeoutError:
# we still want to invoke the protocol send in case # we still want to invoke the protocol send in case