From 2af15c5fcdc55a2424d2d6796f21627579eaba35 Mon Sep 17 00:00:00 2001 From: TaurusXin Date: Sat, 1 Feb 2025 18:12:20 +0800 Subject: [PATCH] remove: debug print --- utils/config_manager.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/config_manager.go b/utils/config_manager.go index bb72f56..3902fcd 100644 --- a/utils/config_manager.go +++ b/utils/config_manager.go @@ -2,7 +2,6 @@ package utils import ( "encoding/json" - "fmt" "os" "path/filepath" ) @@ -75,7 +74,6 @@ func (cm *ConfigManager) Load() *Preference { var preference *Preference = nil decoder := json.NewDecoder(file) err = decoder.Decode(&preference) - fmt.Println(preference) if err != nil { return nil }