From 7c77f4f84b59a1bc98c996d875b4af49cb0bd0dc Mon Sep 17 00:00:00 2001 From: Mark Bailey Date: Sun, 24 Nov 2024 07:19:39 -0500 Subject: [PATCH] refactor: remove debugging statement --- app/routing/router.go | 2 -- 1 file changed, 2 deletions(-) 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)) }