MM-18253 Refactor "manualtesting/manual_testing.go" to use str… (#12363)

Этот коммит содержится в:
Micah Thompson
2019-09-26 01:19:52 -04:00
коммит произвёл Ben Schumacher
родитель 9a363f559e
Коммит effb6d8003

Просмотреть файл

@@ -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
}