summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-03-28 20:26:32 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-28 20:26:32 +0000
commit8162690b3fed83f2029da8b5998f1f1ff1d12f05 (patch)
tree8260175f26805a1dbf6d53e9ee8727bf867c2cb5
parent0a35afacda89bf3530996ce4e1c28f02be7b07d4 (diff)
parent9960b987b2e2d13e99136a7f8195378d4c987d95 (diff)
downloadextras-8162690b3fed83f2029da8b5998f1f1ff1d12f05.tar.gz
Merge "lpdump: log warning message."
-rw-r--r--partition_tools/lpdumpd.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/partition_tools/lpdumpd.cc b/partition_tools/lpdumpd.cc
index 83ec60ed..6110f337 100644
--- a/partition_tools/lpdumpd.cc
+++ b/partition_tools/lpdumpd.cc
@@ -50,12 +50,17 @@ class Lpdump : public BnLpdump {
}
LOG(DEBUG) << "Dumping with args: " << base::Join(args, " ");
std::stringstream output;
- int ret = LpdumpMain((int)m_args.size(), argv, output, output);
+ std::stringstream error;
+ int ret = LpdumpMain((int)m_args.size(), argv, output, error);
+ std::string error_str = error.str();
if (ret == 0) {
+ if (!error_str.empty()) {
+ LOG(WARNING) << error_str;
+ }
*aidl_return = output.str();
return Status::ok();
} else {
- return Status::fromServiceSpecificError(ret, output.str().c_str());
+ return Status::fromServiceSpecificError(ret, error_str.c_str());
}
}
};