Set profiler sleep time to 30 seconds

This commit is contained in:
Dan Sosedoff 2014-11-21 17:20:30 -06:00
parent f49735094b
commit d3a6757d5e

View File

@ -19,6 +19,6 @@ func startRuntimeProfiler() {
fmt.Println("Memory acquired:", m.Sys, "bytes,", m.Sys/MEGABYTE, "mb")
fmt.Println("Memory used:", m.Alloc, "bytes,", m.Alloc/MEGABYTE, "mb")
time.Sleep(time.Minute)
time.Sleep(time.Second * 30)
}
}