This is an automated email from the ASF dual-hosted git repository.
squakez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 0df6fc444 chore(ctrl): log infof
0df6fc444 is described below
commit 0df6fc4446cd1c38c239b412e9270fc2c62410d0
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Tue Jun 9 08:31:14 2026 +0200
chore(ctrl): log infof
---
pkg/controller/integration/build.go | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pkg/controller/integration/build.go
b/pkg/controller/integration/build.go
index bccefed39..64cf10133 100644
--- a/pkg/controller/integration/build.go
+++ b/pkg/controller/integration/build.go
@@ -256,7 +256,7 @@ func (action *buildAction) createBuilderServiceAccount(ctx
context.Context, ns s
},
},
}
- action.L.Info("Creating %s ServiceAccount in namespace %s", sa.Name,
sa.Namespace)
+ action.L.Infof("Creating %s ServiceAccount in namespace %s", sa.Name,
sa.Namespace)
return action.client.Create(ctx, sa)
}
@@ -298,7 +298,7 @@ func (action *buildAction) createBuilderRole(ctx
context.Context, ns string) err
},
},
}
- action.L.Info("Creating %s Role in namespace %s", r.Name, r.Namespace)
+ action.L.Infof("Creating %s Role in namespace %s", r.Name, r.Namespace)
return action.client.Create(ctx, r)
}
@@ -331,7 +331,7 @@ func (action *buildAction) createBuilderRoleBinding(ctx
context.Context, ns stri
Name: platform.BuilderServiceAccount,
},
}
- action.L.Info("Creating %s RoleBinding in namespace %s", rb.Name,
rb.Namespace)
+ action.L.Infof("Creating %s RoleBinding in namespace %s", rb.Name,
rb.Namespace)
return action.client.Create(ctx, rb)
}