Skip to content

Commit d73f017

Browse files
committed
chore: reduce verbosity for topic_id wrong check
1 parent 010b282 commit d73f017

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

freqtrade/rpc/telegram.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ async def wrapper(self, *args, **kwargs):
114114
return None
115115
if (topic_id := self._config["telegram"].get("topic_id")) is not None:
116116
if str(ctopic_id) != topic_id:
117-
logger.info(f"Rejected message from wrong channel: {cchat_id}, {ctopic_id}")
117+
# This can be quite common in multi-topic environments.
118+
logger.debug(f"Rejected message from wrong channel: {cchat_id}, {ctopic_id}")
118119
return None
119120

120121
# Rollback session to avoid getting data stored in a transaction.

0 commit comments

Comments
 (0)