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 eb0004c commit 149e69fCopy full SHA for 149e69f
src/Nullinside.Api.TwitchBot/ChatRules/TwitchChatMessageMonitorConsumer.cs
@@ -111,13 +111,14 @@ 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