diff --git a/vault/expiration.go b/vault/expiration.go index ea09bffbbe23..f857b4e3e5bf 100644 --- a/vault/expiration.go +++ b/vault/expiration.go @@ -1989,7 +1989,7 @@ func (m *ExpirationManager) emitMetrics() { // Check if lease count is greater than the threshold if num > maxLeaseThreshold { if atomic.LoadUint32(m.leaseCheckCounter) > 59 { - m.logger.Warn("lease count exceeds warning lease threshold") + m.logger.Warn("lease count exceeds warning lease threshold", "have", num, "threshold", maxLeaseThreshold) atomic.StoreUint32(m.leaseCheckCounter, 0) } else { atomic.AddUint32(m.leaseCheckCounter, 1)