From b34b48a5677b2803b25187bd249bff60084181dc Mon Sep 17 00:00:00 2001 From: Cyberosa Date: Fri, 22 Nov 2024 17:21:41 +0100 Subject: [PATCH] Update packages/valory/skills/decision_maker_abci/behaviours/sampling.py Co-authored-by: Adamantios Zaras --- .../valory/skills/decision_maker_abci/behaviours/sampling.py | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/valory/skills/decision_maker_abci/behaviours/sampling.py b/packages/valory/skills/decision_maker_abci/behaviours/sampling.py index 1368d960..be207a2c 100644 --- a/packages/valory/skills/decision_maker_abci/behaviours/sampling.py +++ b/packages/valory/skills/decision_maker_abci/behaviours/sampling.py @@ -130,7 +130,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)