From d6c24092eb0e24f7aaa921110c62e99e81ae1f88 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Wed, 8 May 2013 15:26:44 -0700 Subject: [PATCH] + Runtime: Add go version to debug infos --- commands.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands.go b/commands.go index dba8cd8572..1f2b13e6f0 100644 --- a/commands.go +++ b/commands.go @@ -11,6 +11,7 @@ import ( "log" "net/http" "net/url" + "os" "path/filepath" "runtime" "strconv" @@ -284,9 +285,10 @@ func (srv *Server) CmdInfo(stdin io.ReadCloser, stdout io.Writer, args ...string VERSION, imgcount) - if !rcli.DEBUG_FLAG { + if os.Getenv("DEBUG") == "" { return nil } + fmt.Fprintf(stdout, "Go version: %s\n", runtime.Version()) fmt.Fprintln(stdout, "debug mode enabled") fmt.Fprintf(stdout, "fds: %d\ngoroutines: %d\n", getTotalUsedFds(), runtime.NumGoroutine()) return nil