Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f34094a authored by Bowgo Tsai's avatar Bowgo Tsai
Browse files

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
parent 8678872a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -56,7 +56,7 @@ bool fs_mgr_get_boot_config(const std::string& key, std::string* out_val) {
            return true;
            return true;
        }
        }


        LERROR << "Error finding '" << key << "' in device tree";
        LINFO << "Error finding '" << key << "' in device tree";
    }
    }


    return false;
    return false;