Skip to content

Commit

Permalink
[TAEvaluator] make reevaluation ignore log more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDSM committed Dec 19, 2023
1 parent eccfc64 commit 02432bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octobot_evaluators/evaluators/TA_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ async def evaluators_callback(self,
if self.get_is_time_frame_wildcard() else \
[self.time_frame] if self.time_frame in data.get(constants.EVALUATOR_CHANNEL_DATA_TIME_FRAMES, []) else []
if not self.enable_reevaluation():
self.logger.debug(f"Ignoring re-evaluation ({data[constants.EVALUATOR_CHANNEL_DATA_ACTION]}): "
f"enable_reevaluation() is False")
self.logger.debug(f"Ignoring re-evaluation ({data[constants.EVALUATOR_CHANNEL_DATA_ACTION]}) "
f"for {symbol}/{time_frame} on {exchange_name}: enable_reevaluation() is False")
return
# re-evaluation processes
if data[constants.EVALUATOR_CHANNEL_DATA_ACTION] == constants.TA_RE_EVALUATION_TRIGGER_UPDATED_DATA:
Expand Down

0 comments on commit 02432bd

Please sign in to comment.