1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-15 17:46:55 +00:00

Align memstats, error on non-200 responses

This commit is contained in:
Kane York 2015-10-31 23:16:58 -07:00
parent b2624ec77f
commit 18619eddd3
2 changed files with 17 additions and 2 deletions

View file

@ -61,7 +61,7 @@ func commandLineConsole() {
if val.Mallocs == 0 {
continue
}
shell.Println(val.Size, "bytes:", val.Mallocs, "allocs", val.Frees, "frees")
shell.Print(fmt.Sprintf("%5d: %6d outstanding (%d total)\n", val.Size, val.Mallocs - val.Frees, val.Mallocs))
}
shell.Println(m.NumGC, "collections occurred")
return "", nil