Merge "init: print property/value for wait_for_property" am: 54f7e57bac

am: 6a74ce960f

Change-Id: Ic6f46d15568f4a87bcc1f06b523bc6a22ec647e6
This commit is contained in:
Wei Wang 2019-02-05 23:44:45 -08:00 committed by android-build-merger
commit 691b7c9c93

View file

@ -192,7 +192,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();
}
}