@@ -740,7 +740,7 @@ public void checkAccess(Path path, Set<? extends AccessMode> modes, LinkOption..
740
740
delegate .checkAccess (path , modes , linkOptions );
741
741
passed = true ;
742
742
} finally {
743
- finest ("VFS.checkAccess delegated '%s' %s" , path , passed ? "OK " : "KO " );
743
+ finest ("VFS.checkAccess delegated '%s' %s and " , path , passed ? "passed " : "did not pass " );
744
744
}
745
745
} else {
746
746
String msg = String .format ("filesystem without host IO: '%s'" , path );
@@ -771,7 +771,7 @@ public void createDirectory(Path dir, FileAttribute<?>... attrs) throws IOExcept
771
771
try {
772
772
delegate .createDirectory (dir , attrs );
773
773
} finally {
774
- finest ("VFS.createDirectory delegated '%s' %s" , dir , passed ? "OK " : "KO " );
774
+ finest ("VFS.createDirectory delegated '%s' %s" , dir , passed ? "passed " : "did not pass " );
775
775
}
776
776
} else {
777
777
String msg = String .format ("filesystem without host IO: '%s'" , dir );
@@ -794,7 +794,7 @@ public void delete(Path path) throws IOException {
794
794
try {
795
795
delegate .delete (path );
796
796
} finally {
797
- finest ("VFS.delete delegated '%s' %s" , path , passed ? "OK " : "KO " );
797
+ finest ("VFS.delete delegated '%s' %s" , path , passed ? "passed " : "did not pass " );
798
798
}
799
799
} else {
800
800
String msg = String .format ("filesystem without host IO: '%s'" , path );
@@ -817,7 +817,7 @@ public SeekableByteChannel newByteChannel(Path path, Set<? extends OpenOption> o
817
817
try {
818
818
return delegate .newByteChannel (path , options , attrs );
819
819
} finally {
820
- finest ("VFS.newByteChannel delegated '%s' %s" , path , passed ? "OK " : "KO " );
820
+ finest ("VFS.newByteChannel delegated '%s' %s" , path , passed ? "passed " : "did not pass " );
821
821
}
822
822
} else {
823
823
String msg = String .format ("filesystem without host IO: '%s'" , path );
@@ -916,7 +916,7 @@ public DirectoryStream<Path> newDirectoryStream(Path dir, DirectoryStream.Filter
916
916
try {
917
917
return delegate .newDirectoryStream (dir , filter );
918
918
} finally {
919
- finest ("VFS.newDirectoryStream delegated '%s' %s" , dir , passed ? "OK " : "KO " );
919
+ finest ("VFS.newDirectoryStream delegated '%s' %s" , dir , passed ? "passed " : "did not pass " );
920
920
}
921
921
} else {
922
922
String msg = String .format ("filesystem without host IO: '%s'" , dir );
0 commit comments