From 172c1d8b6e4e5aa813535ee4526c6a1b98e7eb44 Mon Sep 17 00:00:00 2001 From: bowgotsai Date: Thu, 16 Mar 2017 10:25:39 +0900 Subject: [PATCH] fs_mgr: change the log level in fs_mgr_read_fstab_dt() Devices having no early mount enabled won't have fstab in device tree. Lower the log level to INFO when fstab is absent there. Bug: 35811655 Test: boot into recovery mode in a device without fstab in dt Change-Id: I4b1e0e6554f50b8118770d00aa8f54be86aca858 --- fs_mgr/fs_mgr_fstab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_mgr/fs_mgr_fstab.cpp b/fs_mgr/fs_mgr_fstab.cpp index 2e54d6909..a4f88ba89 100644 --- a/fs_mgr/fs_mgr_fstab.cpp +++ b/fs_mgr/fs_mgr_fstab.cpp @@ -604,7 +604,7 @@ struct fstab *fs_mgr_read_fstab_dt() { std::string fstab_buf = read_fstab_from_dt(); if (fstab_buf.empty()) { - LERROR << __FUNCTION__ << "(): failed to read fstab from dt"; + LINFO << __FUNCTION__ << "(): failed to read fstab from dt"; return nullptr; }