From e567d94fc23892e066cc53c3173f95048ef48cc0 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 2 Jan 2018 11:00:42 -0800 Subject: [PATCH] tools/functional-tester: remove duplicate grpclog set Signed-off-by: Gyuho Lee --- tools/functional-tester/etcd-tester/stresser.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/functional-tester/etcd-tester/stresser.go b/tools/functional-tester/etcd-tester/stresser.go index 4c5cdcef63c..f9ab3f9fbc6 100644 --- a/tools/functional-tester/etcd-tester/stresser.go +++ b/tools/functional-tester/etcd-tester/stresser.go @@ -16,17 +16,13 @@ package main import ( "fmt" - "os" "strings" "sync" "time" "golang.org/x/time/rate" - "google.golang.org/grpc/grpclog" ) -func init() { grpclog.SetLoggerV2(grpclog.NewLoggerV2(os.Stderr, os.Stderr, os.Stderr)) } - type Stresser interface { // Stress starts to stress the etcd cluster Stress() error