cmd: fix up stats printing on macOS after accounting change

s3-about
Nick Craig-Wood 2019-07-28 20:38:20 +01:00
parent f347514f62
commit ac0dce78d0
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ func SigInfoHandler() {
signal.Notify(signals, syscall.SIGINFO)
go func() {
for range signals {
log.Printf("%v\n", accounting.Stats)
log.Printf("%v\n", accounting.GlobalStats())
}
}()
}