Revert "modules: Adjust the log throttle logic a little"

This reverts commit 3f64b5a3de.
This commit is contained in:
Bjørn Erik Pedersen 2023-10-29 10:57:25 +01:00
parent 3ed28e4bfe
commit eb5fd3127f
No known key found for this signature in database

View file

@ -106,18 +106,16 @@ func NewClient(cfg ClientConfig) *Client {
var throttleSince time.Time
throttle := func(f func()) {
// Skip the first call.
// This is used for "download" etc. and we want to avoid
// logging anything if it is fast.
if throttleSince.IsZero() {
throttleSince = time.Now()
f()
return
}
if time.Since(throttleSince) < 6*time.Second {
return
}
f()
throttleSince = time.Now()
f()
}
return &Client{