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 cd861ff commit 2b48883Copy full SHA for 2b48883
lib/websocket-tracker.js
@@ -161,8 +161,9 @@ WebSocketTracker.prototype._onSocketData = function (data) {
161
162
WebSocketTracker.prototype._send = function (params) {
163
var self = this
164
- debug('send %s', JSON.stringify(params))
165
- self._socket.send(params)
+ var message = JSON.stringify(params)
+ debug('send %s', message)
166
+ self._socket.send(message)
167
}
168
169
WebSocketTracker.prototype._generateOffers = function (numWant, cb) {
0 commit comments