Skip to content

Commit

Permalink
refactor: display task start with INFO instead of DEBUG (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored Oct 2, 2024
1 parent 13b843f commit 01c3f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silverback/middlewares.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def pre_execute(self, message: TaskiqMessage) -> TaskiqMessage:
message.labels["transaction_hash"] = log.transaction_hash
message.labels["log_index"] = str(log.log_index)

logger.debug(f"{self._create_label(message)} - Started")
logger.info(f"{self._create_label(message)} - Started")
return message

def post_execute(self, message: TaskiqMessage, result: TaskiqResult):
Expand Down

0 comments on commit 01c3f77

Please sign in to comment.