We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4af7e commit c6f5756Copy full SHA for c6f5756
src/FileSystems/Registry.h
@@ -227,8 +227,10 @@ class Registry {
227
return *p_fs;
228
}
229
230
- if (file_systems.isEmpty(){
231
- FS_LOGE("fileSystem: No filesystem for %s", path);
+ if (!file_systems.empty()){
+ FS_LOGE("No filesystem for %s", path);
232
+ } else {
233
+ FS_LOGD("No filesystems available");
234
235
return NoFileSystem;
236
0 commit comments