From ca37a4c7c739895818bf0009715ed91ccfb0f50e Mon Sep 17 00:00:00 2001 From: Toby Chui Date: Sat, 1 Nov 2025 14:48:55 +0800 Subject: [PATCH] Update src/mod/tlscert/handler.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/mod/tlscert/handler.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mod/tlscert/handler.go b/src/mod/tlscert/handler.go index 08f762e..99b83a4 100644 --- a/src/mod/tlscert/handler.go +++ b/src/mod/tlscert/handler.go @@ -88,7 +88,6 @@ func (m *Manager) SetCertAsDefault(w http.ResponseWriter, r *http.Request) { defaultPriKey := filepath.Join(m.CertStore, "default.key") defaultJSON := filepath.Join(m.CertStore, "default.json") - fmt.Println(defaultPubKey, defaultPriKey, defaultJSON) if utils.FileExists(defaultPubKey) && utils.FileExists(defaultPriKey) { //Move the existing default cert to its original name certBytes, err := os.ReadFile(defaultPubKey)