From b4da12815f00ee52ae8b57d1b5d28be9435b053a Mon Sep 17 00:00:00 2001 From: elias-orijtech <103319121+elias-orijtech@users.noreply.github.com> Date: Thu, 21 Apr 2022 16:26:07 +0200 Subject: [PATCH] test/fuzz/tests: remove debug logging statement (#8385) --- test/fuzz/tests/p2p_secretconnection_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/test/fuzz/tests/p2p_secretconnection_test.go b/test/fuzz/tests/p2p_secretconnection_test.go index 38b59b581..65f268a7b 100644 --- a/test/fuzz/tests/p2p_secretconnection_test.go +++ b/test/fuzz/tests/p2p_secretconnection_test.go @@ -53,7 +53,6 @@ func fuzz(data []byte) { } copy(dataRead[totalRead:], buf[:m]) totalRead += m - log.Printf("total read: %d", totalRead) } if !bytes.Equal(data, dataRead) {