disable debug message

This commit is contained in:
SugoiDogo
2024-12-24 16:22:41 -08:00
committed by GitHub
parent 2d5ec72582
commit 81fc3daf42
+2 -2
View File
@@ -356,7 +356,7 @@ async function init_irc(){
ircSend('PASS oauth:'+tokens.access_token)
ircSend('NICK '+tokens.login)
ircSend('JOIN #'+tokens.login)
ircSend('PRIVMSG #'+tokens.login+' :SugoiSubathon connected')
//ircSend('PRIVMSG #'+tokens.login+' :SugoiSubathon connected')
}
irc.onmessage=function(event){
console.debug(event)
@@ -420,4 +420,4 @@ function init_streamelements(){
streamelements.on('event', onEvent);
streamelements.on('event:update', onEvent);
streamelements.on('event:reset', onEvent);
}
}