|
|
@@ -6,7 +6,7 @@ use rust_decimal::Decimal;
|
|
|
use tokio::{spawn, time};
|
|
|
use tokio::sync::Mutex;
|
|
|
use tokio::time::Instant;
|
|
|
-use tracing::{error, info};
|
|
|
+use tracing::{error};
|
|
|
use exchanges::bybit_swap_ws::{BybitSwapLogin, BybitSwapSubscribeType, BybitSwapWs, BybitSwapWsType};
|
|
|
use exchanges::response_base::ResponseData;
|
|
|
use global::trace_stack::TraceStack;
|
|
|
@@ -115,8 +115,6 @@ async fn on_private_data(core_arc_clone: Arc<Mutex<Core>>, ct_val: &Decimal, run
|
|
|
let mut trace_stack = TraceStack::new(response.time, response.ins);
|
|
|
trace_stack.on_after_span_line();
|
|
|
|
|
|
- info!(?response);
|
|
|
-
|
|
|
match response.channel.as_str() {
|
|
|
"wallet" => {
|
|
|
let account = standard::handle_info::HandleSwapInfo::handle_account_info(BybitSwap, &response, run_symbol);
|