diff options
Diffstat (limited to 'src-tauri/src/main.rs')
| -rw-r--r-- | src-tauri/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index e4d0a2e..0f1d7a1 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -118,7 +118,7 @@ async fn start_game( } } - emit_log!(window, format!("Account found: {}", account.username())); + emit_log!(window, "Account found".to_string()); let config = config_state.config.lock().unwrap().clone(); emit_log!(window, format!("Java path: {}", config.java_path)); |