about summary refs log tree commit diff
path: root/src/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http.go b/src/http.go
index 0b7481e..6cbbce8 100644
--- a/src/http.go
+++ b/src/http.go
@@ -3,6 +3,7 @@ package main
 import (
 	"fmt"
 	"html/template"
+	"log"
 	"net/http"
 )
 
@@ -43,6 +44,7 @@ func indexHandler(w http.ResponseWriter, r *http.Request) {
 		// get the template
 		t, err := template.ParseGlob(fmt.Sprintf("%s/*.html", templatesPath))
 		if err != nil {
+			log.Printf("Error reading the template Path: %s/*.html", templatesPath)
 			w.WriteHeader(http.StatusInternalServerError)
 			w.Write([]byte("500 - Error reading template file"))
 			return