From 69302be280348b134b95769d80b266883aa17c92 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Thu, 1 Sep 2016 12:17:43 +0200 Subject: [PATCH] remove unneeded debug logs in drop tests --- integrationtests/drop_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/integrationtests/drop_test.go b/integrationtests/drop_test.go index da4f74032..eefbbb850 100644 --- a/integrationtests/drop_test.go +++ b/integrationtests/drop_test.go @@ -12,7 +12,6 @@ import ( _ "github.com/lucas-clemente/quic-clients" // download clients "github.com/lucas-clemente/quic-go/integrationtests/proxy" "github.com/lucas-clemente/quic-go/protocol" - "github.com/lucas-clemente/quic-go/utils" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" @@ -27,7 +26,6 @@ var _ = Describe("Drop Proxy", func() { var dropproxy *proxy.UDPProxy runDropTest := func(incomingPacketDropper, outgoingPacketDropper proxy.DropCallback, version protocol.VersionNumber) { - utils.SetLogLevel(utils.LogLevelInfo) proxyPort := 12345 clientPath := fmt.Sprintf( @@ -59,7 +57,6 @@ var _ = Describe("Drop Proxy", func() { AfterEach(func() { dropproxy.Stop() time.Sleep(time.Millisecond) - utils.SetLogLevel(utils.LogLevelNothing) }) for i := range protocol.SupportedVersions {