run-microdroid command: default --debug flag to "full"
The main purpose of this command is to provide developers an easy way to
start a Microdroid instance to play with, so defaulting to the "full"
debug mode will make developers life a tad easier.
Bug: 254912288
Test: adb shell /apex/com.android.virt/bin/vm run-microdroid
Change-Id: I9de7e25a6f7742abf58491b35f2f14a79aecdcd2
diff --git a/vm/src/main.rs b/vm/src/main.rs
index ca25101..bc18fae 100644
--- a/vm/src/main.rs
+++ b/vm/src/main.rs
@@ -149,7 +149,7 @@
ramdump: Option<PathBuf>,
/// Debug level of the VM. Supported values: "none" (default), "app_only", and "full".
- #[clap(long, default_value = "none", value_parser = parse_debug_level)]
+ #[clap(long, default_value = "full", value_parser = parse_debug_level)]
debug: DebugLevel,
/// Run VM in protected mode.