瀏覽代碼

移除非必要日志。

skyfffire 1 年之前
父節點
當前提交
accec8f16c
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      strategy/src/strategy.rs

+ 0 - 2
strategy/src/strategy.rs

@@ -1012,7 +1012,6 @@ impl Strategy {
                     continue
                 }
                 // debug!(?key, ?order.price, ?long_upper, ?long_lower);
-                info!("kd-{}-{}", self.side, key);
                 command.cancel.insert(key.clone(), value.clone());
             }
 
@@ -1022,7 +1021,6 @@ impl Strategy {
                 if order.price >= short_lower && order.price <= short_upper && self.side == "short".to_string() {
                     continue
                 }
-                info!("kk-{}-{}", self.side, key);
                 // debug!(?key, ?order.price, ?short_lower, ?short_upper);
                 command.cancel.insert(key.clone(), value.clone());
             }