pvmfw: entry: Reduce minimum logging level to Info

Test: atest MicrodroidTestApp
Change-Id: I5e062040c52ce7bd482eb8b118267e0574410ecf
diff --git a/pvmfw/src/entry.rs b/pvmfw/src/entry.rs
index 430a012..18721c5 100644
--- a/pvmfw/src/entry.rs
+++ b/pvmfw/src/entry.rs
@@ -51,7 +51,7 @@
     // - only access MMIO once (and while) it has been mapped and configured
     // - only perform logging once the logger has been initialized
     // - only access non-pvmfw memory once (and while) it has been mapped
-    logger::init(LevelFilter::Debug).map_err(|_| RebootReason::InternalError)?;
+    logger::init(LevelFilter::Info).map_err(|_| RebootReason::InternalError)?;
 
     // TODO: Check that the FDT is fully contained in RAM.
     // SAFETY - We trust the VMM, for now.