diff --git a/pkg/chartutil/requirements.go b/pkg/chartutil/requirements.go index 8865566e3f6c3cb624ea05a1fe6f990a605154c2..3a31042d6fb12d143878078346269815ea25c196 100644 --- a/pkg/chartutil/requirements.go +++ b/pkg/chartutil/requirements.go @@ -147,7 +147,7 @@ func ProcessRequirementsConditions(reqs *Requirements, cvals Values) { hasFalse = true } } else { - //log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name) + log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name) } } else if _, ok := err.(ErrNoValue); !ok { // this is a real error @@ -197,7 +197,7 @@ func ProcessRequirementsTags(reqs *Requirements, cvals Values) { hasFalse = true } } else { - //log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name) + log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name) } } }