diff --git a/posix-list-dir-others.go b/posix-list-dir-others.go index e9abcc3db..66b6036ca 100644 --- a/posix-list-dir-others.go +++ b/posix-list-dir-others.go @@ -19,7 +19,6 @@ package main import ( - "fmt" "io" "os" "strings" @@ -31,7 +30,6 @@ func readDir(dirPath string) (entries []string, err error) { if err != nil { // File is really not found. if os.IsNotExist(err) { - fmt.Println(preparePath(dirPath), err) return nil, errFileNotFound }