fs_mgr: change the log level in fs_mgr_read_fstab_dt()
Devices having no early mount enabled won't have fstab in device tree. Lower the log level to INFO when fstab is absent there. Bug: 35811655 Test: boot into recovery mode in a device without fstab in dt Change-Id: I4b1e0e6554f50b8118770d00aa8f54be86aca858
This commit is contained in:
parent
e7b335b471
commit
172c1d8b6e
1 changed files with 1 additions and 1 deletions
|
@ -604,7 +604,7 @@ struct fstab *fs_mgr_read_fstab_dt()
|
|||
{
|
||||
std::string fstab_buf = read_fstab_from_dt();
|
||||
if (fstab_buf.empty()) {
|
||||
LERROR << __FUNCTION__ << "(): failed to read fstab from dt";
|
||||
LINFO << __FUNCTION__ << "(): failed to read fstab from dt";
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue