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

Commit c9352bb3 authored by Wei Wang's avatar Wei Wang
Browse files

init: print property/value for wait_for_property

Bug: 123772265
Bug: 123788098
Test: Build
Change-Id: Ice130d7efab1f227a2f9021136621ad08f84fd23
parent aa257564
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -190,7 +190,8 @@ void property_changed(const std::string& name, const std::string& value) {

    if (waiting_for_prop) {
        if (wait_prop_name == name && wait_prop_value == value) {
            LOG(INFO) << "Wait for property took " << *waiting_for_prop;
            LOG(INFO) << "Wait for property '" << wait_prop_name << "=" << wait_prop_value
                      << "' took " << *waiting_for_prop;
            ResetWaitForProp();
        }
    }