diff options
Diffstat (limited to 'recovery_main.cpp')
| -rw-r--r-- | recovery_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp index 6e7675f7..75ba2d1f 100644 --- a/recovery_main.cpp +++ b/recovery_main.cpp @@ -141,7 +141,7 @@ static std::vector<std::string> get_args(const int argc, char** const argv, std: // Skip empty and '\0'-filled tokens. if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it)); } - LOG(INFO) << "Got " << args.size() << " arguments from boot message"; + LOG(INFO) << "Got " << args.size() << " arguments from boot message " << android::base::Join(args, ", "); } else if (boot.recovery[0] != 0) { LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\""; } |
