From 073dfafb284ba75531e7f2a3211ada5635e8b651 Mon Sep 17 00:00:00 2001 From: Maximilian Date: Mon, 6 Mar 2023 21:10:09 -0600 Subject: [PATCH] Change log message --- routes/getRoutes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/getRoutes.go b/routes/getRoutes.go index d61a56b..f12596f 100644 --- a/routes/getRoutes.go +++ b/routes/getRoutes.go @@ -23,7 +23,7 @@ func GetRoutes(app *app.App) { } staticHandler := http.FileServer(http.FS(staticFS)) http.Handle("/static/", http.StripPrefix("/static/", staticHandler)) - log.Println("Serving static files from embedded FS") + log.Println("Serving static files from embedded file system /static") // Pages http.HandleFunc("/", getController.ShowHome)