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:
Bowgo Tsai 2017-03-28 18:46:42 +08:00
parent 8678872a00
commit 0f34094a17

View file

@ -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;