From effb6d80032245e3948132223622c7a3d5662c97 Mon Sep 17 00:00:00 2001 From: Micah Thompson Date: Thu, 26 Sep 2019 01:19:52 -0400 Subject: [PATCH] =?UTF-8?q?MM-18253=20Refactor=20"manualtesting/manual=5Ft?= =?UTF-8?q?esting.go"=20to=20use=20str=E2=80=A6=20(#12363)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manualtesting/manual_testing.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manualtesting/manual_testing.go b/manualtesting/manual_testing.go index ae8e65637c..7dbd7aac91 100644 --- a/manualtesting/manual_testing.go +++ b/manualtesting/manual_testing.go @@ -4,7 +4,6 @@ package manualtesting import ( - "fmt" "hash/fnv" "math/rand" "net/http" @@ -162,6 +161,6 @@ func getChannelID(a *app.App, channelname string, teamid string, userid string) return channel.Id, true } } - mlog.Debug(fmt.Sprintf("Could not find channel: %v, %v possibilities searched", channelname, strconv.Itoa(len(*channels)))) + mlog.Debug("Could not find channel", mlog.String("Channel name", channelname), mlog.Int("Possibilities searched", len(*channels))) return "", false }