diff --git a/pkg/cluster/https.go b/pkg/cluster/https.go index da1161a1f5..0e9f1000b0 100644 --- a/pkg/cluster/https.go +++ b/pkg/cluster/https.go @@ -3,6 +3,7 @@ package cluster import ( "context" "crypto/tls" + "log" "net" "net/http" "path/filepath" @@ -60,7 +61,8 @@ func (c *Cluster) initClusterAndHTTPS(ctx context.Context) error { } server := http.Server{ - Handler: handler, + Handler: handler, + ErrorLog: log.New(logrus.StandardLogger().Writer(), "Cluster-Http-Server ", log.LstdFlags), } go func() {