refactor: change println to tracing

This commit is contained in:
Nova
2024-06-15 12:40:09 -04:00
parent 65a9957be1
commit e2c9e06cd3
2 changed files with 3 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ async fn main() {
_ = stereokit_loop => (),
_ = tokio::signal::ctrl_c() => unsafe {sk_quit(QuitReason::SystemClose)},
}
println!("Stopping...");
info!("Stopping...");
if let Some(project_dirs) = project_dirs {
save_session(&project_dirs).await;
}