Remove a particularly verbose test debug log

This line can overwhelm console output in long-running tests.
Let's stop emitting it, but leave it commented out so that it's
handy in case someone needs to debug statsd in tests.

Change-Id: I5ada8571a47364f8d41bded36aa7298ed261750a
This commit is contained in:
James E. Blair 2021-08-19 10:23:01 -07:00
parent 9fa3c6ec6e
commit 9432c968ba
1 changed files with 1 additions and 1 deletions

View File

@ -2849,7 +2849,7 @@ class FakeStatsd(threading.Thread):
data = self.sock.recvfrom(1024)
if not data:
return
self.log.debug("Appending: %s" % data[0])
# self.log.debug("Appending: %s" % data[0])
self.stats.append(data[0])
if fd == self.wake_read:
return