fs_mgr: change the log level in fs_mgr_get_boot_config()
fs_mgr might try to get a non-existing config through fs_mgr_get_boot_config() on a device (e.g., for backward compatibility). Lower the log level to INFO so it won't appear on the recovery screen. Bug: 35811655 Test: recovery boot sailfish Change-Id: I81497259aff3691740170abeef932d363b52be35
This commit is contained in:
parent
8678872a00
commit
0f34094a17
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ bool fs_mgr_get_boot_config(const std::string& key, std::string* out_val) {
|
|||
return true;
|
||||
}
|
||||
|
||||
LERROR << "Error finding '" << key << "' in device tree";
|
||||
LINFO << "Error finding '" << key << "' in device tree";
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue