Skip to content

Commit a4efc33

Browse files
committed
fix(vfs): change log level from warning to error for stat failure
1 parent 92f3d13 commit a4efc33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/FS/src/vfs_api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ VFSFileImpl::VFSFileImpl(VFSImpl *fs, const char *fpath, const char *mode) : _fs
281281
setvbuf(_f, NULL, _IOFBF, DEFAULT_FILE_BUFFER_SIZE);
282282
}
283283
} else {
284-
log_w("stat(%s) failed", temp);
284+
log_e("stat(%s) failed", temp);
285285
}
286286
}
287287
free(temp);

0 commit comments

Comments
 (0)