From 17c6ae61da79e735c526dc324d15ca500e07dd11 Mon Sep 17 00:00:00 2001 From: Justin Scott Date: Sat, 11 Feb 2017 13:39:15 -0800 Subject: [PATCH] feat(helm): re-enable log warnings for tags and conditions --- pkg/chartutil/requirements.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/chartutil/requirements.go b/pkg/chartutil/requirements.go index 8865566e3..3a31042d6 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) } } }