From eba577e892581ecd9c5e0ad4511f289c875c05ed Mon Sep 17 00:00:00 2001 From: njtran Date: Tue, 20 Feb 2024 08:45:56 -0800 Subject: [PATCH] fix: add missing print directive --- pkg/controllers/disruption/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controllers/disruption/controller.go b/pkg/controllers/disruption/controller.go index bd98a5b05f..fda24515b7 100644 --- a/pkg/controllers/disruption/controller.go +++ b/pkg/controllers/disruption/controller.go @@ -283,6 +283,6 @@ func (c *Controller) logInvalidBudgets(ctx context.Context) { } } if buf.Len() > 0 { - logging.FromContext(ctx).Errorf("detected disruption budget errors: ", buf.String()) + logging.FromContext(ctx).Errorf("detected disruption budget errors: %s", buf.String()) } }