Add missing dots (fixing compilation error on go 1.11) (#9448)

This commit is contained in:
Jesús Espino
2018-09-24 21:00:28 +02:00
committed by Christopher Speller
parent f917d3d19b
commit 38529ca23c

View File

@@ -60,7 +60,7 @@ type RecoveryLogger struct {
func (rl *RecoveryLogger) Println(i ...interface{}) {
mlog.Error("Please check the std error output for the stack trace")
mlog.Error(fmt.Sprint(i))
mlog.Error(fmt.Sprint(i...))
}
const TIME_TO_WAIT_FOR_CONNECTIONS_TO_CLOSE_ON_SERVER_SHUTDOWN = time.Second