From a0726a4b56b07dc2392f5ec9f6f0005e90df4502 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Thu, 17 May 2012 11:07:07 -0500 Subject: [PATCH] rfb: debug output cleanup. --- include/rfb.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/rfb.js b/include/rfb.js index 494b0a1b..fea2fcf0 100644 --- a/include/rfb.js +++ b/include/rfb.js @@ -1573,9 +1573,9 @@ encHandlers.TIGHT = function () { return display_tight(false); }; encHandlers.TIGHT_PNG = function () { return display_tight(true); }; encHandlers.last_rect = function last_rect() { - Util.Debug(">> set_desktopsize"); + //Util.Debug(">> last_rect"); FBU.rects = 0; - Util.Debug("<< set_desktopsize"); + //Util.Debug("<< last_rect"); return true; }; @@ -1597,7 +1597,7 @@ encHandlers.DesktopSize = function set_desktopsize() { encHandlers.Cursor = function set_cursor() { var x, y, w, h, pixelslength, masklength; - //Util.Debug(">> set_cursor"); + Util.Debug(">> set_cursor"); x = FBU.x; // hotspot-x y = FBU.y; // hotspot-y w = FBU.width; @@ -1618,7 +1618,7 @@ encHandlers.Cursor = function set_cursor() { FBU.bytes = 0; FBU.rects -= 1; - //Util.Debug("<< set_cursor"); + Util.Debug("<< set_cursor"); return true; };