use tracing::trace; use global::account_info; #[tokio::test] async fn get_account_info() { global::log_utils::init_log_with_trace(); let account_info = account_info::get_account_info("../test_account.toml"); trace!(?account_info); }