summaryrefslogtreecommitdiffstats
path: root/app/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/server.go')
-rw-r--r--app/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/server.go b/app/server.go
index 0c579593e..debb6764f 100644
--- a/app/server.go
+++ b/app/server.go
@@ -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