From e06ea4c0cb84c320d4d6970b699950131768e794 Mon Sep 17 00:00:00 2001 From: Maple Nebel Date: Tue, 28 Apr 2026 23:44:43 +0200 Subject: [PATCH] add logging --- rnex-core/src/nex/user.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rnex-core/src/nex/user.rs b/rnex-core/src/nex/user.rs index 9670c78..3917b72 100644 --- a/rnex-core/src/nex/user.rs +++ b/rnex-core/src/nex/user.rs @@ -54,6 +54,7 @@ use std::sync::{Arc, Weak}; use tokio::sync::{Mutex, RwLock}; use crate::rmc::structures::Error; +use crate::rmc::structures::matchmake::MatchmakeSessionSearchCriteria; cfg_if! { if #[cfg(feature = "datastore")] { @@ -514,7 +515,7 @@ impl MatchmakeExtension for User { async fn auto_matchmake_with_search_criteria_postpone( &self, - criteria: Vec, + criteria: Vec, gathering: Any, join_message: String, ) -> Result { @@ -524,6 +525,8 @@ impl MatchmakeExtension for User { .flatten() .ok_or(ErrorCode::Core_InvalidArgument)?; + println!("{:?}", criteria); + let session = self .auto_matchmake_with_param_postpone(AutoMatchmakeParam { matchmake_session: session,