From 6f328cca637263d912f25cce21a09878281f40ce Mon Sep 17 00:00:00 2001 From: Mark Vayngrib Date: Sat, 16 May 2015 13:52:06 -0400 Subject: [PATCH] fix logging --- UdpSocket.ios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UdpSocket.ios.js b/UdpSocket.ios.js index a262299..4fdaeeb 100644 --- a/UdpSocket.ios.js +++ b/UdpSocket.ios.js @@ -44,7 +44,7 @@ UdpSocket.prototype._debug = function() { // for now var args = [].slice.call(arguments) args.unshift('socket-' + this._id) - console.log.apply(null, args) + console.log.apply(console, args) } UdpSocket.prototype.bind = function(port, address, callback) {