From: Bjørn Erik Pedersen Date: Tue, 25 Oct 2016 20:56:44 +0000 (+0200) Subject: Add missing template error logging X-Git-Tag: v0.18~159 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0406be3d547749b93dd4fd13e142982915b6ca1f;p=brevno-suite%2Fhugo Add missing template error logging --- diff --git a/hugolib/hugo_sites_test.go b/hugolib/hugo_sites_test.go index 66c818ac..e14a04cb 100644 --- a/hugolib/hugo_sites_test.go +++ b/hugolib/hugo_sites_test.go @@ -17,7 +17,6 @@ import ( "github.com/spf13/hugo/helpers" "github.com/spf13/hugo/hugofs" "github.com/spf13/hugo/source" - jww "github.com/spf13/jwalterweatherman" "github.com/spf13/viper" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -29,7 +28,6 @@ type testSiteConfig struct { func init() { testCommonResetState() - jww.SetStdoutThreshold(jww.LevelCritical) } func testCommonResetState() { diff --git a/hugolib/site_test.go b/hugolib/site_test.go index 22c61582..bc43fca0 100644 --- a/hugolib/site_test.go +++ b/hugolib/site_test.go @@ -33,11 +33,6 @@ import ( "github.com/stretchr/testify/require" ) -func init() { - //There are expected ERROR logging in tests that produces a lot of noise. - jww.SetStdoutThreshold(jww.LevelCritical) -} - const ( pageSimpleTitle = `--- title: simple template diff --git a/tpl/template.go b/tpl/template.go index 0f78fa00..a1568b91 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -460,7 +460,9 @@ func (t *GoHTMLTemplate) loadTemplates(absPath string, prefix string) { } } - t.AddTemplateFile(tplName, baseTemplatePath, path) + if err := t.AddTemplateFile(tplName, baseTemplatePath, path); err != nil { + jww.ERROR.Printf("Failed to add template %s: %s", tplName, err) + } } return nil