Skip to content

Commit b2c32aa

Browse files
committed
Log start time along with GC information
1 parent 825d349 commit b2c32aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ func (t *transport) gc(gen generation) {
209209
ioutil.ReadAll(resp.Body)
210210
resp.Body.Close()
211211
}
212-
fmt.Printf("%s,%v\n", gen.string(), end.Sub(start).Nanoseconds()/1e6)
212+
fmt.Printf("%d,%s,%v\n", start.Unix(), gen.string(), end.Sub(start).Nanoseconds()/1e6)
213213
}
214214

215215
////////// PROXY

0 commit comments

Comments
 (0)