summaryrefslogtreecommitdiff
path: root/simpleperf/workload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simpleperf/workload.cpp')
-rw-r--r--simpleperf/workload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpleperf/workload.cpp b/simpleperf/workload.cpp
index 4aaeb2a9..60c9ed15 100644
--- a/simpleperf/workload.cpp
+++ b/simpleperf/workload.cpp
@@ -45,7 +45,7 @@ bool Workload::RunCmd(const std::vector<std::string>& args, bool report_error) {
std::string arg_str = android::base::Join(args, ' ');
int ret = system(arg_str.c_str());
if (ret != 0 && report_error) {
- PLOG(ERROR) << "Failed to run cmd " << arg_str;
+ LOG(ERROR) << "Failed to run cmd " << arg_str << ", exitcode " << ret;
return false;
}
return ret == 0;