From 34c906be55e78712d448f377aab123fe9b14b185 Mon Sep 17 00:00:00 2001 From: fanmin shi Date: Fri, 28 Oct 2016 14:27:09 -0700 Subject: [PATCH] functional-tester: fix log statement simple fix for wrongly printed statement. --- tools/functional-tester/etcd-tester/tester.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/functional-tester/etcd-tester/tester.go b/tools/functional-tester/etcd-tester/tester.go index e4bf4cbeb..8f5f70eaa 100644 --- a/tools/functional-tester/etcd-tester/tester.go +++ b/tools/functional-tester/etcd-tester/tester.go @@ -45,7 +45,7 @@ func (tt *tester) runLoop() { roundTotalCounter.Inc() if err := tt.doRound(round); err != nil { - plog.Warningf("%s functional-tester returning with error (%v)", tt.logPrefix, err) + plog.Warningf("%s functional-tester returning with error (%v)", tt.logPrefix(), err) if tt.cleanup() != nil { return }