diff --git a/packages/valory/skills/decision_maker_abci/behaviours/sampling.py b/packages/valory/skills/decision_maker_abci/behaviours/sampling.py index d063f3c4..505b0591 100644 --- a/packages/valory/skills/decision_maker_abci/behaviours/sampling.py +++ b/packages/valory/skills/decision_maker_abci/behaviours/sampling.py @@ -128,7 +128,6 @@ def _sample(self) -> Optional[int]: available_bets = list( filter(lambda bet: self.processable_bet(bet, now=now), self.bets) ) - self.context.logger.info(f"length of available bets: {len(available_bets)}") if len(available_bets) == 0: msg = "There were no unprocessed bets available to sample from!" self.context.logger.warning(msg)