Browse Source

关闭仓位过滤前打印

JiahengHe 1 year ago
parent
commit
1a2c9f1003
1 changed files with 0 additions and 1 deletions
  1. 0 1
      strategy/src/phemex_usdt_swap.rs

+ 0 - 1
strategy/src/phemex_usdt_swap.rs

@@ -141,7 +141,6 @@ async fn on_private_data(core_arc_clone: Arc<Mutex<Core>>,
             let mut position_res = response.clone();
             position_res.data = position_res.data["positions_p"].clone();
             let positions = standard::handle_info::HandleSwapInfo::handle_position(PhemexSwap, &position_res, &ct_val);
-            info!("{} 仓位推送:{:?}", &target_symbol.replace("_", "").to_uppercase(), positions);
             // 只要正在运行中币对的仓位信息
             let run_position: Vec<Position> = positions.into_iter().filter(|position| position.symbol.contains(&target_symbol.replace("_", "").to_uppercase())).collect();
             if run_position.len() > 0 {