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

Commit a2af0dec authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

fs_mgr: liblp: add additional debugging details

Test: none
Bug: 109821005
Change-Id: I759e76f793e8dd6f26f649dc727e80c9955e764f
parent 3da42a6c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -94,7 +94,8 @@ static bool ValidateAndSerializeMetadata(int fd, const LpMetadata& metadata, std
    }
    // Make sure we're writing within the space reserved.
    if (blob->size() > geometry.metadata_max_size) {
        LERROR << "Logical partition metadata is too large.";
        LERROR << "Logical partition metadata is too large. " << blob->size() << " > "
               << geometry.metadata_max_size;
        return false;
    }