From 0f34094a176ab633faecb320609cca6a405da81e Mon Sep 17 00:00:00 2001 From: Bowgo Tsai Date: Tue, 28 Mar 2017 18:46:42 +0800 Subject: [PATCH] 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 --- fs_mgr/fs_mgr_boot_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_mgr/fs_mgr_boot_config.cpp b/fs_mgr/fs_mgr_boot_config.cpp index 5b2f21814..cffa6ce67 100644 --- a/fs_mgr/fs_mgr_boot_config.cpp +++ b/fs_mgr/fs_mgr_boot_config.cpp @@ -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;