Reduce virtualizationservice log level.
serde_xml_rs logs lots of unneccesary detail at debug level, no need to
fill up logcat with that.
Bug: 217533086
Test: Ran a Microdroid VM, looked at logcat
Change-Id: I94f9373c6c839975decaec004b8b3cc091384834
diff --git a/virtualizationservice/src/main.rs b/virtualizationservice/src/main.rs
index 69ae076..43e46a3 100644
--- a/virtualizationservice/src/main.rs
+++ b/virtualizationservice/src/main.rs
@@ -40,7 +40,7 @@
fn main() {
android_logger::init_once(
- android_logger::Config::default().with_tag(LOG_TAG).with_min_level(Level::Trace),
+ android_logger::Config::default().with_tag(LOG_TAG).with_min_level(Level::Info),
);
clear_temporary_files().expect("Failed to delete old temporary files");