|
|
@@ -6,6 +6,7 @@ use rust_decimal::Decimal;
|
|
|
use tokio::{spawn, time};
|
|
|
use tokio::sync::Mutex;
|
|
|
use tokio::time::Instant;
|
|
|
+use tracing::info;
|
|
|
use exchanges::bybit_swap_ws::{BybitSwapLogin, BybitSwapSubscribeType, BybitSwapWs, BybitSwapWsType};
|
|
|
use exchanges::response_base::ResponseData;
|
|
|
use global::trace_stack::TraceStack;
|
|
|
@@ -179,6 +180,8 @@ async fn on_public_data(core_arc_clone: Arc<Mutex<Core>>, update_flag_u: &mut De
|
|
|
let special_depth = standard::handle_info::HandleSwapInfo::handle_book_ticker(BybitSwap, &response);
|
|
|
trace_stack.on_after_format();
|
|
|
|
|
|
+ info!("{}", trace_stack.to_string());
|
|
|
+
|
|
|
on_special_depth(core_arc_clone, update_flag_u, &response.label, &mut trace_stack, &special_depth).await;
|
|
|
}
|
|
|
"orderbook" => {
|