aboutsummaryrefslogtreecommitdiff
path: root/host/commands/assemble_cvd/bootconfig_args.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/commands/assemble_cvd/bootconfig_args.cpp')
-rw-r--r--host/commands/assemble_cvd/bootconfig_args.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/host/commands/assemble_cvd/bootconfig_args.cpp b/host/commands/assemble_cvd/bootconfig_args.cpp
index 60d8c31f1..36c512355 100644
--- a/host/commands/assemble_cvd/bootconfig_args.cpp
+++ b/host/commands/assemble_cvd/bootconfig_args.cpp
@@ -191,7 +191,12 @@ Result<std::unordered_map<std::string, std::string>> BootconfigArgsFromConfig(
bootconfig_args["androidboot.ramdisk_hotswapped"] = "1";
}
- for (const std::string& kv : config.extra_bootconfig_args()) {
+ std::vector<std::string> args = instance.extra_bootconfig_args();
+
+ LOG(DEBUG) << "Parsing extra_bootconfig_args of size:" << args.size()
+ << "; Contents: " << android::base::Join(args, "\n");
+
+ for (const std::string& kv : args) {
if (kv.empty()) {
continue;
}