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)