From cb83985cc7dce84fe8105ff8ebffd3a95daacad5 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Sun, 12 Oct 2025 23:58:50 +0800 Subject: [PATCH] chore(server): remove debug println statement from `server.go` --- internal/api/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/api/server.go b/internal/api/server.go index 560fc0b7..be3c05b0 100644 --- a/internal/api/server.go +++ b/internal/api/server.go @@ -457,7 +457,6 @@ func (s *Server) serveManagementControlPanel(c *gin.Context) { c.AbortWithStatus(http.StatusNotFound) return } - println(s.currentPath) filePath := managementasset.FilePath(s.currentPath) if strings.TrimSpace(filePath) == "" { c.AbortWithStatus(http.StatusNotFound)