From a2decaeff35145cb919535fb254bbae1860afb5e Mon Sep 17 00:00:00 2001 From: Myzel394 Date: Thu, 29 May 2025 20:20:46 +0200 Subject: [PATCH] fix(server): Remove print statement --- server/utils/common.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/utils/common.go b/server/utils/common.go index e676ba0..3c2491d 100644 --- a/server/utils/common.go +++ b/server/utils/common.go @@ -2,7 +2,6 @@ package utils import ( "errors" - "fmt" "os" ) @@ -25,8 +24,6 @@ func IsPathDirectory(path string) bool { func IsPathFile(path string) bool { _, err := os.Stat(path) - print(fmt.Sprintf("Checking if path %s is a file: %v\n", path, err)) - if errors.Is(err, os.ErrNotExist) { return false }