mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 08:40:28 +00:00
Merge pull request #467 from neilalexander/debugtext
Send PPROF output text to stderr
This commit is contained in:
commit
6263fa287c
@ -35,9 +35,9 @@ func init() {
|
|||||||
hostPort := os.Getenv(envVarName)
|
hostPort := os.Getenv(envVarName)
|
||||||
switch {
|
switch {
|
||||||
case hostPort == "":
|
case hostPort == "":
|
||||||
fmt.Printf("DEBUG: %s not set, profiler not started.\n", envVarName)
|
fmt.Fprintf(os.Stderr, "DEBUG: %s not set, profiler not started.\n", envVarName)
|
||||||
default:
|
default:
|
||||||
fmt.Printf("DEBUG: Starting pprof on %s\n", hostPort)
|
fmt.Fprintf(os.Stderr, "DEBUG: Starting pprof on %s\n", hostPort)
|
||||||
go func() { fmt.Println(http.ListenAndServe(hostPort, nil)) }()
|
go func() { fmt.Println(http.ListenAndServe(hostPort, nil)) }()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user