From 007c4286d7a804b57c072dcc95d784ee5c226e0b Mon Sep 17 00:00:00 2001 From: govolokatliai Date: Mon, 28 Oct 2024 11:57:12 +0800 Subject: [PATCH] fix debugprint() change line --- config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.go b/config/config.go index d9061b8..5e19843 100644 --- a/config/config.go +++ b/config/config.go @@ -39,8 +39,8 @@ func check() error { } func debugprint() { - fmt.Printf("ListenPort=%v", ListenPort) - fmt.Printf("File=%v", File) - fmt.Printf("database path : %s", DB.Path) + fmt.Printf("ListenPort=%v\n", ListenPort) + fmt.Printf("File=%v\n", File) + fmt.Printf("database path : %s\n", DB.Path) }