From b3b48d447a133da72710b4e3a59b1f0239e346cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Vl=C3=A9rick?= Date: Fri, 17 Nov 2023 08:44:25 +0100 Subject: [PATCH] small typo in trace message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Vlérick --- crates/libcontainer/src/user_ns.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/libcontainer/src/user_ns.rs b/crates/libcontainer/src/user_ns.rs index b55fd41ba..082b23ba6 100644 --- a/crates/libcontainer/src/user_ns.rs +++ b/crates/libcontainer/src/user_ns.rs @@ -166,7 +166,7 @@ impl UserNamespaceConfig { Ok(Some(user_ns_config)) } else { - tracing::debug!("this is container does NOT create a new user namespace"); + tracing::debug!("this container does NOT create a new user namespace"); Ok(None) } }