Change missing logical partitions from LOGERR to LOGINFO
Between Android versions, there may be different partitions
that make up super. Just because a partition that in fstab
is not in super doesn't necessarily mean there's a problem.
Change this message to information only so the end user
doesn't think there's a problem when there isn't one
Change-Id: I9cb99aabe20e20059e66cf0cf13cff5ed056f529
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index d41eac3..e71f33c 100755
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -3328,7 +3328,7 @@
fstab.emplace_back(fstabEntry);
if (!fs_mgr_update_logical_partition(&fstabEntry)) {
- LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
+ LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
return false;
}