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; } ]