From 94484067f3f6bebbcc3c7c6625f71640802cf640 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Wed, 26 Aug 2015 14:47:59 -0700 Subject: [PATCH] Log Go runtime version --- cmd/influxd/run/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/influxd/run/command.go b/cmd/influxd/run/command.go index 629fd3eec1..c3e48dfb7f 100644 --- a/cmd/influxd/run/command.go +++ b/cmd/influxd/run/command.go @@ -116,7 +116,7 @@ func (cmd *Command) Run(args ...string) error { // Mark start-up in log. log.Printf("InfluxDB starting, version %s, branch %s, commit %s", cmd.Version, cmd.Branch, cmd.Commit) - log.Println("GOMAXPROCS set to", runtime.GOMAXPROCS(0)) + log.Printf("Go version %s, GOMAXPROCS set to %d", runtime.Version(), runtime.GOMAXPROCS(0)) // Begin monitoring the server's error channel. go cmd.monitorServerErrors()