File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ use alloc::vec::Vec;
10
10
use core:: fmt;
11
11
use core:: fmt:: { Debug , Formatter } ;
12
12
use core:: ops:: Deref ;
13
- use log:: debug;
14
13
15
14
/// Return type for public [`FileSystem`] operations.
16
15
pub type FileSystemResult < T > = Result < T , Error > ;
@@ -156,7 +155,6 @@ impl<'a> FileSystem<'a> {
156
155
// Collect all relevant sub paths in a vector.
157
156
let mut dirs_to_create = vec ! [ path. to_path_buf( ) ] ;
158
157
while let Some ( parent) = dirs_to_create. last ( ) . unwrap ( ) . parent ( ) {
159
- debug ! ( "parent={parent}" ) ;
160
158
dirs_to_create. push ( parent)
161
159
}
162
160
// Now reverse, so that we have something like this:
@@ -421,7 +419,6 @@ impl<'a> FileSystem<'a> {
421
419
self . open_root ( ) ?
422
420
. open ( path. to_cstr16 ( ) , mode, attr)
423
421
. map_err ( |err| {
424
- log:: trace!( "Can't open file {path}: {err:?}" ) ;
425
422
Error :: Io ( IoError {
426
423
path : path. to_path_buf ( ) ,
427
424
context : IoErrorContext :: OpenError ,
You can’t perform that action at this time.
0 commit comments