From f7201bed85f2a006ead20036e4c662ec41b7ab84 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Mon, 1 Oct 2012 22:53:57 -0400 Subject: [PATCH] fix ccg.log for node-webkit --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7db7569..6199dcb 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ ccg.prototype.log = function () { var args = _.values(arguments); args.unshift("CCG:"); - console.log.apply(this, args); + console.log.apply(console, args); }; // connection management and command queing