File tree Expand file tree Collapse file tree
LavalinkServer/src/main/java/lavalink/server/io Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -173,7 +173,6 @@ class SocketServer(
173173 override fun handleTextMessage (session : WebSocketSession , message : TextMessage ) {
174174 val json = JSONObject (message.payload)
175175
176- log.info(message.payload)
177176
178177 if (! session.isOpen) {
179178 log.error(" Ignoring closing websocket: ${session.remoteAddress!! } " )
@@ -183,7 +182,6 @@ class SocketServer(
183182 val context = contextMap[session.attributes[" sessionId" ]]
184183 ? : throw IllegalStateException (" No context for session ID ${session.id} . Broken websocket?" )
185184 context.wsHandler.handle(json)
186- log.info(" it's been transfered" )
187185
188186 }
189187
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ class WebSocketHandler(
5151
5252 fun handle (json : JSONObject ) {
5353 val op = json.getString(" op" )
54- log.info(" hnadling on op until here" )
5554 val handler = handlers[op] ? : return log.warn(" Unknown op '$op '" )
5655 handler(json)
5756 }
You can’t perform that action at this time.
0 commit comments