From a4b0ca37b78cb4993588c5b71092e04650e3681c Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Fri, 16 Jan 2026 17:00:47 +0800 Subject: fix: update logging for Java arguments in game start function Modified the logging statement in the start_game function to display all Java arguments instead of just the first ten, improving debugging capabilities. --- src-tauri/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-tauri') diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 6ea6ece..5ccbe96 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -523,7 +523,7 @@ async fn start_game( ); // Debug: Log arguments (only first few to avoid spam) if args.len() > 10 { - emit_log!(window, format!("First 10 args: {:?}", &args[..10])); + emit_log!(window, format!("Java Args: {:?}", &args)); } // Spawn the process -- cgit v1.2.3-70-g09d2