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 }