We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0592a4c commit 4855b9aCopy full SHA for 4855b9a
src/Nullinside.Api.TwitchBot/ChatRules/TwitchChatMessageMonitorConsumer.cs
@@ -111,14 +111,13 @@ private async void MainLoop() {
111
// Try to get a message from one of the two queues.
112
ChatMessage? message;
113
_queue.TryTake(out message);
114
-
+
115
// If we didn't get a message, loop.
116
if (null == message) {
117
Thread.Sleep(LOOP_TIMEOUT);
118
continue;
119
}
120
121
- LOG.Info("Message received: " + message.Id);
122
string? channel = message.Channel;
123
try {
124
// Sanity check.
0 commit comments