From bd91ddaf524882530f0a63e3a0f0c24a81e6d445 Mon Sep 17 00:00:00 2001 From: "Thibault \"bui\" Koechlin" Date: Wed, 13 Jul 2022 10:56:03 +0200 Subject: [PATCH] logging consistency for .local files (#1655) --- pkg/yamlpatch/patcher.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/yamlpatch/patcher.go b/pkg/yamlpatch/patcher.go index fc1ecefab..300488e03 100644 --- a/pkg/yamlpatch/patcher.go +++ b/pkg/yamlpatch/patcher.go @@ -138,6 +138,7 @@ func (p *Patcher) PrependedPatchContent() ([]byte, error) { if err = decodeDocuments(patchFile, &result, true); err != nil { return nil, err } + log.Infof("Prepending yaml: '%s' with '%s'", p.BaseFilePath, p.PatchFilePath) } baseFile, err = os.Open(p.BaseFilePath)