Browse Source

server: only print gc stats if something has been removed

pull/611/head
Eric Chiang 10 years ago
parent
commit
89ecfd2ede
  1. 2
      server/server.go

2
server/server.go

@ -273,7 +273,7 @@ func startGarbageCollection(ctx context.Context, s storage.Storage, frequency ti
case <-time.After(frequency):
if r, err := s.GarbageCollect(now()); err != nil {
log.Printf("garbage collection failed: %v", err)
} else {
} else if r.AuthRequests > 0 || r.AuthCodes > 0 {
log.Printf("garbage collection run, delete auth requests=%d, auth codes=%d", r.AuthRequests, r.AuthCodes)
}
}

Loading…
Cancel
Save