From b5d345cdec703b08f4f7a0241b1ed24e14435220 Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Mon, 29 Aug 2022 14:23:10 -0700 Subject: [PATCH] Remove debug code --- blefs/all.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/blefs/all.go b/blefs/all.go index a29719c..56d82c4 100644 --- a/blefs/all.go +++ b/blefs/all.go @@ -1,7 +1,6 @@ package blefs import ( - "fmt" "path/filepath" "strings" ) @@ -58,10 +57,8 @@ func (blefs *FS) MkdirAll(path string) error { } splitPath := strings.Split(path, "/") - fmt.Println("p", path, splitPath) for i := 1; i < len(splitPath); i++ { curPath := strings.Join(splitPath[0:i], "/") - fmt.Println("cp", curPath) err := blefs.Mkdir(curPath) if err != nil && err.(FSError).Code != -17 {