diff --git a/routers/common/qos.go b/routers/common/qos.go index 6f2ed0da02..e50fbe4f69 100644 --- a/routers/common/qos.go +++ b/routers/common/qos.go @@ -75,6 +75,7 @@ func QoS() func(next http.Handler) http.Handler { // Check if the request can begin processing. err := c.Acquire(ctx, int(priority)) if err != nil { + log.Error("QoS error, dropping request of priority %s: %v", priority, err) renderServiceUnavailable(w, req) return }