Downgrade scheme not found log level to info

This commit is contained in:
Jeremy Soller
2026-02-26 10:00:39 -07:00
parent e9e514efce
commit 3a94262aff
+1 -1
View File
@@ -166,7 +166,7 @@ impl<'sock> NamespaceScheme<'sock> {
ctx: &CallerCtx,
) -> Result<usize> {
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));
};