From 3a94262aff98e0e1ea77f3d26bfd65592b9736c1 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 26 Feb 2026 10:00:39 -0700 Subject: [PATCH] Downgrade scheme not found log level to info --- bootstrap/src/initnsmgr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/src/initnsmgr.rs b/bootstrap/src/initnsmgr.rs index 74bba3f50e..ad5e1ac2be 100644 --- a/bootstrap/src/initnsmgr.rs +++ b/bootstrap/src/initnsmgr.rs @@ -166,7 +166,7 @@ impl<'sock> NamespaceScheme<'sock> { ctx: &CallerCtx, ) -> Result { let Some(cap_fd) = ns.get_scheme_fd(scheme) else { - warn!("Scheme {:?} not found in namespace", scheme); + log::info!("Scheme {:?} not found in namespace", scheme); return Err(Error::new(ENODEV)); };