From 01dc5985ad0cbfbbe75c8ff1204f85c4c51d0787 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Mon, 11 May 2020 14:03:03 +0100 Subject: [PATCH] Space --- common/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/log.go b/common/log.go index 4b6419b50..60e969650 100644 --- a/common/log.go +++ b/common/log.go @@ -84,7 +84,7 @@ func callerPrettyfier(f *runtime.Frame) (string, string) { // simplest, and it gives us the freedom to run pprof on a separate port. func SetupPprof() { if hostPort := os.Getenv("PPROFLISTEN"); hostPort != "" { - logrus.Warn("Starting pprof on", hostPort) + logrus.Warn("Starting pprof on ", hostPort) go func() { logrus.WithError(http.ListenAndServe(hostPort, nil)).Error("Failed to setup pprof listener") }()