Change print messages

This commit is contained in:
Sik Yoon 2023-10-04 20:14:17 +09:00
parent fdd2623fba
commit 3a977045bb

View File

@ -32,12 +32,12 @@ pub async fn monitoring_future_ratio() -> Result<(), Box<dyn std::error::Error +
ratio_vec = de_json_ratio(&T).await?;
}
Err(E) => {
println!("future_ratio body failed! : {:?}", E);
println!("globalLongShortAccountRatio body failed! : {:?}", E);
}
}
}
Err(E) => {
println!("future_ratio response failed!: {:?}", E);
println!("globalLongShortAccountRatio response failed!: {:?}", E);
}
}
@ -54,12 +54,12 @@ pub async fn monitoring_future_ratio() -> Result<(), Box<dyn std::error::Error +
wrapper_vec = de_json_vol(&T).await?;
}
Err(E) => {
println!("request_all_coin_price body failed! : {:?}", E);
println!("takerlongshortRatio body failed! : {:?}", E);
}
}
}
Err(E) => {
println!("request_all_coin_price response failed!: {:?}", E);
println!("takerlongshortRatio body failed!: {:?}", E);
}
}