From aad701d0c120a719e33d0d03016d14be6f10a611 Mon Sep 17 00:00:00 2001 From: xxjwxc Date: Fri, 1 May 2020 12:08:22 +0800 Subject: [PATCH] remove log --- tools/file.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/file.go b/tools/file.go index bb68a5a..80e05fc 100644 --- a/tools/file.go +++ b/tools/file.go @@ -2,7 +2,6 @@ package tools import ( "bufio" - "fmt" "io" "io/ioutil" "os" @@ -68,7 +67,7 @@ func GetModelPath() string { func GetCurrentDirectory() string { dir, _ := os.Executable() exPath := filepath.Dir(dir) - fmt.Println(exPath) + // fmt.Println(exPath) return exPath }