You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2019/12/18 12:34:54 UTC

[camel-k] 09/13: chore(build): Display build name in builder logger

This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 11ad807f355a44a9a5524dfd2efb800d4fac4f8a
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Tue Dec 17 12:45:57 2019 +0100

    chore(build): Display build name in builder logger
---
 pkg/builder/builder.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pkg/builder/builder.go b/pkg/builder/builder.go
index 4cf5c3d..c54b860 100644
--- a/pkg/builder/builder.go
+++ b/pkg/builder/builder.go
@@ -134,6 +134,7 @@ func (b *defaultBuilder) Run(build v1alpha1.BuilderTask) v1alpha1.BuildStatus {
 			l := b.log.WithValues(
 				"step", step.ID(),
 				"phase", step.Phase(),
+				"name", build.Meta.Name,
 				"task", build.Name,
 			)