dca2: remove debug log

This commit is contained in:
kbearXD 2024-03-11 15:34:12 +08:00
parent 0bc409e021
commit 17b193b003

View File

@ -87,8 +87,7 @@ func (s *Strategy) runState(ctx context.Context) {
case <-monitorTicker.C:
s.updateNumOfOrdersMetrics(ctx)
case nextState := <-s.nextStateC:
s.logger.Infof("[DCA] currenct state: %d, next state: %d", s.state, nextState)
// s.logger.Infof("[DCA] currenct state: %d, next state: %d", s.state, nextState)
// check the next state is valid
validNextState, exist := stateTransition[s.state]
if !exist {