From 0073aec478db00758dbd76d2238c45d8c0d4913e Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Sun, 11 Sep 2011 23:03:53 +1000 Subject: [PATCH] some debug dump removed --- lib/x11/corereqs.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/x11/corereqs.js b/lib/x11/corereqs.js index db7341d..03b73dd 100644 --- a/lib/x11/corereqs.js +++ b/lib/x11/corereqs.js @@ -252,7 +252,6 @@ module.exports = { CreatePixmap: [ function(pid, drawable, depth, width, height) { - console.log(['CreatePixmap:', 'CCSLLSS', [53, depth, 4, pid, drawable, width, height]]); return [ 'CCSLLSS', [53, depth, 4, pid, drawable, width, height] ]; } ], @@ -443,7 +442,6 @@ module.exports = { format += 'L'; for (var offset=0; offset < buff.length - 4*listLength; offset += 4*listLength) res.push(buff.unpack(format, offset)); - console.log(res); return res; } ]