Quick-and-dirty way to print details of template errors
authorAnthony Fok <foka@debian.org>
Tue, 20 Jan 2015 09:23:28 +0000 (02:23 -0700)
committerAnthony Fok <foka@debian.org>
Tue, 20 Jan 2015 09:23:28 +0000 (02:23 -0700)
See Issue #316.

tpl/template.go

index 9574adb9cd34dec428bce82954424cc95919ecd6..b448355e7bba6fe9cce2e9cb6071fa00459538a1 100644 (file)
@@ -1144,6 +1144,7 @@ func (t *GoHtmlTemplate) AddInternalShortcode(name, content string) error {
 func (t *GoHtmlTemplate) AddTemplate(name, tpl string) error {
        _, err := t.New(name).Parse(tpl)
        if err != nil {
+               jww.ERROR.Println(err)
                t.errors = append(t.errors, &templateErr{name: name, err: err})
        }
        return err