From fe6ee466495343a587b40f74e732772ba8d0c9a5 Mon Sep 17 00:00:00 2001 From: MaxVerevkin Date: Tue, 5 Mar 2024 11:29:30 +0200 Subject: [PATCH] client: fix WAYLAND_DEBUG output for new ids --- wayrs-client/src/debug_message.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wayrs-client/src/debug_message.rs b/wayrs-client/src/debug_message.rs index f2c9dab..22dd645 100644 --- a/wayrs-client/src/debug_message.rs +++ b/wayrs-client/src/debug_message.rs @@ -57,8 +57,8 @@ impl Debug for DebugMessage<'_> { ArgValue::AnyNewId(iface, version, id) => write!( f, "new id {}@{}v{version}", + iface.to_string_lossy(), id.as_u32(), - iface.to_string_lossy() )?, ArgValue::String(x) | ArgValue::OptString(Some(x)) => write!(f, "{x:?}")?, ArgValue::Array(_) => write!(f, "")?,