diff --git a/app/routing/router.go b/app/routing/router.go index aeb589f..f69189c 100644 --- a/app/routing/router.go +++ b/app/routing/router.go @@ -9,7 +9,6 @@ import ( "git.markbailey.dev/cerbervs/ptpp/lib/logger" "git.markbailey.dev/cerbervs/ptpp/lib/middleware" "git.markbailey.dev/cerbervs/ptpp/util" - "log" "net/http" ) @@ -78,7 +77,6 @@ func (r Router) RegisterFs() { } fs := http.FileServer(http.Dir(util.GetFullyQualifiedPath("/public"))) - log.Println("Serving static files from: " + util.GetFullyQualifiedPath("/public")) r.Mux.Handle("GET "+r.BasePath+"public/", http.StripPrefix("/public/", fs)) }