From 03a75597d0a1468703790bf16971b13a6e8a1c35 Mon Sep 17 00:00:00 2001 From: Dilshat Aliev Date: Tue, 22 Oct 2019 20:39:09 +0600 Subject: [PATCH] fixing test failure on Jenkins due to go version increase --- agent/discovery/discovery.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/discovery/discovery.go b/agent/discovery/discovery.go index 4ca38408..f9b665cc 100644 --- a/agent/discovery/discovery.go +++ b/agent/discovery/discovery.go @@ -20,8 +20,8 @@ type handler struct { func (h handler) Tracef(f string, args ...interface{}) {} func (h handler) Infof(f string, args ...interface{}) {} -func (h handler) Warnf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args)) } -func (h handler) Errorf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args)) } +func (h handler) Warnf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args...)) } +func (h handler) Errorf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args...)) } func (h handler) Response(message gossdp.ResponseMessage) {