diff options
-rw-r--r-- | src/http/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/http.go b/src/http/http.go index c35f378..9bf35e0 100644 --- a/src/http/http.go +++ b/src/http/http.go @@ -281,7 +281,7 @@ func pathHandler(w http.ResponseWriter, r *http.Request) { t := template.New("") t, err = t.ParseGlob("./hosted/tmpl/*.html") if err != nil { - logrus.Warn(err) + logrus.Warn("Could not parse the template: %s", err) return } |