Searchable error in VintfObject Get
The listFiles error added recently hasn't shown up. If a different empty
error is getting hit here, we still want to know. So, adding greppable
text.
Bug: 151696835
Test: N/A
Change-Id: I922680e1eb46eb3fcbb2850ad315b555df7b5abc
Merged-In: I922680e1eb46eb3fcbb2850ad315b555df7b5abc
diff --git a/VintfObject.cpp b/VintfObject.cpp
index 2c7c9fa..2611a56 100644
--- a/VintfObject.cpp
+++ b/VintfObject.cpp
@@ -58,7 +58,7 @@
std::string error;
status_t status = fetchAllInformation(ptr->object.get(), &error);
if (status != OK) {
- LOG(WARNING) << status << ": " << error;
+ LOG(WARNING) << status << " VINTF parse error: " << error;
ptr->object = nullptr; // frees the old object
}
ptr->fetchedOnce = true;