Skip to content

Commit f3178fc

Browse files
committed
[melobot] Changed to debug log for discarded events in Dispatcher
1 parent adc43b0 commit f3178fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/melobot/bot/dispatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def broadcast(self, event: Event) -> None:
7878
if self.first_chan is not None:
7979
self.first_chan.event_que.put_nowait(event)
8080
else:
81-
self.logger.warning(f"没有任何可用的事件处理流,事件 {event.id} 将被丢弃")
81+
self.logger.debug(f"此刻没有可用的事件处理流,事件 {event.id} 将被丢弃")
8282

8383
def start(self) -> None:
8484
for chan in self._pending_chans:

0 commit comments

Comments
 (0)