Skip to content

Commit

Permalink
fix: add missing print directive (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
njtran authored Feb 20, 2024
1 parent 5f4a32d commit 46d3d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/disruption/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,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())
}
}

0 comments on commit 46d3d64

Please sign in to comment.