summaryrefslogtreecommitdiff
path: root/cmds/dumpstate/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/dumpstate/utils.cpp')
-rw-r--r--cmds/dumpstate/utils.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/cmds/dumpstate/utils.cpp b/cmds/dumpstate/utils.cpp
index 282a772d53..f0ae325457 100644
--- a/cmds/dumpstate/utils.cpp
+++ b/cmds/dumpstate/utils.cpp
@@ -713,6 +713,7 @@ void send_broadcast(const std::string& action, const std::vector<std::string>& a
}
// Always terminate with NULL.
am_args[am_index + 1] = NULL;
+ log_args("send_broadcast arguments", am_index, am_args);
run_command_always(NULL, 5, am_args);
}
@@ -1187,3 +1188,12 @@ void dump_emmc_ecsd(const char *ext_csd_path) {
printf("\n");
}
+
+void log_args(const std::string& message, int argc, const char *argv[]) {
+ std::string args;
+ for (int i = 0; i < argc; i++) {
+ args.append(argv[i]);
+ args.append(" ");
+ }
+ MYLOGI("%s: %s\n", message.c_str(), args.c_str());
+}