Merge "fs_mgr: remove the repetitive and annoying bootconfig error print"

am: 515e7a4fc4

Change-Id: I8cdffd2ab6fc3cc5527d7f8f99f8303ad2c0db35
This commit is contained in:
Sandeep Patil 2017-04-21 16:37:29 +00:00 committed by android-build-merger
commit d1078c42ce

View file

@ -55,8 +55,6 @@ bool fs_mgr_get_boot_config(const std::string& key, std::string* out_val) {
if (android::base::ReadFileToString(file_name, out_val)) { if (android::base::ReadFileToString(file_name, out_val)) {
return true; return true;
} }
LINFO << "Error finding '" << key << "' in device tree";
} }
return false; return false;