From 8e572d69cff2386409877771642e5d6876d9092c Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Wed, 6 Feb 2013 00:23:04 -0800 Subject: [PATCH] added printing of attempted urls --- handlers.go | 1 + 1 file changed, 1 insertion(+) 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)