From d6f15c21028d0b9d0e0a14f7275d8a1be60f6b1c Mon Sep 17 00:00:00 2001 From: nab138 Date: Mon, 26 Jan 2026 22:27:43 -0500 Subject: [PATCH] remove loggin app token --- examples/minimal/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/minimal/src/main.rs b/examples/minimal/src/main.rs index 7d5c170..c7d9ce1 100644 --- a/examples/minimal/src/main.rs +++ b/examples/minimal/src/main.rs @@ -3,7 +3,6 @@ use std::env; use isideload::{ anisette::remote_v3::RemoteV3AnisetteProvider, auth::apple_account::AppleAccountBuilder, }; -use plist_macro::pretty_print_dictionary; use tracing::Level; use tracing_subscriber::FmtSubscriber; @@ -45,7 +44,7 @@ async fn main() { let app_token = account.unwrap().get_app_token("xcode.auth").await; match app_token { - Ok(t) => println!("App token: {}", pretty_print_dictionary(&t)), + Ok(t) => println!("App token acquired"), Err(e) => eprintln!("Failed to get app token: {:?}", e), } }