fix logging

This commit is contained in:
Mark Vayngrib 2015-05-16 13:52:06 -04:00
parent fa2453b4b4
commit 6f328cca63

View File

@ -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) {