summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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());
}
}
};