diff --git a/cmd/version.go b/cmd/version.go index 3dfd5dfc..08f8bcce 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -9,7 +9,7 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version information", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Version:", "0.4.5") + fmt.Println("Version:", "0.4.6") }, } diff --git a/internal/config/config.go b/internal/config/config.go index 8ba490c9..2444083c 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -120,12 +120,10 @@ func LoadConfig(content []byte, configPath string) error { if !filepath.IsAbs(config.JournalPath) { config.JournalPath = filepath.Join(journalDir, config.JournalPath) - println("journal absolute path" + config.JournalPath) } if !filepath.IsAbs(config.DBPath) { config.DBPath = filepath.Join(journalDir, config.DBPath) - println("db absolute path" + config.DBPath) } return nil