From 7f3c008b520e873d1680b7e33e8401f489e84b1e Mon Sep 17 00:00:00 2001 From: Gregor Noczinski Date: Fri, 11 Oct 2024 13:26:52 +0200 Subject: [PATCH] Fix --- cmd/build/build.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/build/build.go b/cmd/build/build.go index aec7143..7034ed2 100644 --- a/cmd/build/build.go +++ b/cmd/build/build.go @@ -189,6 +189,8 @@ func (this *build) evaluateEnvironment(ctx context.Context) error { } } + log.With("file", fn). + Info("options output created") } if fn := this.summaryOutputFilename; fn != "" { @@ -218,6 +220,9 @@ func (this *build) evaluateEnvironment(ctx context.Context) error { return err } } + + log.With("file", fn). + Info("summary output created") } return nil