From 9432c968ba36f129ad1860975c4c09d2926509eb Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 19 Aug 2021 10:23:01 -0700 Subject: [PATCH] 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 --- tests/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/base.py b/tests/base.py index f425669469..f11048b086 100644 --- a/tests/base.py +++ b/tests/base.py @@ -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