diff --git a/handlers.go b/handlers.go index f701c1e..cfca4cc 100644 --- a/handlers.go +++ b/handlers.go @@ -8,6 +8,7 @@ import ( ) func homeHandler(c http.ResponseWriter, req *http.Request) { + log.Printf("%v\n", req.URL) t := templates.Lookup("index.html") if t != nil { t.Execute(c, req.Host)