diff --git a/client/internal/ipcauth/authz_gate.go b/client/internal/ipcauth/authz_gate.go index a8d629fff..313b64b9f 100644 --- a/client/internal/ipcauth/authz_gate.go +++ b/client/internal/ipcauth/authz_gate.go @@ -148,7 +148,7 @@ func (g *AuthzGate) authorize(ctx context.Context, method string, msg any) error } for _, rule := range policy.Rules { if err := rule(req); err != nil { - log.Warnf("ipc authz: DENY %s for %s (%s): %v", method, id, req.Level, err) + log.Warnf("ipc authz: DENY %s for %s (%s): error", method, id, req.Level) return err } }