diff --git a/extern/sector-storage/stores/local.go b/extern/sector-storage/stores/local.go index 4a8c4e1b3a8..1f81d5bd0e9 100644 --- a/extern/sector-storage/stores/local.go +++ b/extern/sector-storage/stores/local.go @@ -157,7 +157,9 @@ func (p *path) stat(ls LocalStorage) (fsutil.FsStat, error) { } } - log.Infow("storage stat", "took", time.Now().Sub(start), "reservations", len(p.reservations)) + if time.Now().Sub(start) > 5*time.Second { + log.Warnw("slow storage stat", "took", time.Now().Sub(start), "reservations", len(p.reservations)) + } return stat, err }