diff --git a/cmd/api/static.go b/cmd/api/static.go index ea3b9f4d..3d061112 100644 --- a/cmd/api/static.go +++ b/cmd/api/static.go @@ -8,6 +8,7 @@ import ( func initStatic(staticDir string) { var root http.FileSystem if staticDir != "" { + log.Info().Str("dir", staticDir).Msg("[api] serve static") root = http.Dir(staticDir) } else { root = http.FS(www.Static)