summaryrefslogtreecommitdiffstats
path: root/xorg
diff options
context:
space:
mode:
authorLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2014-01-21 20:07:18 -0800
committerLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2014-01-21 20:07:18 -0800
commite3eeb4acaa58d68c3feda29b0c79021a41e899d7 (patch)
treed0a2fcee68a9d0d9bb1bad179c4fcf8dd19ba817 /xorg
parenta9701a7cc3899349a642b6f9fd73c104a3aaee99 (diff)
downloadxrdp-proprietary-e3eeb4acaa58d68c3feda29b0c79021a41e899d7.tar.gz
xrdp-proprietary-e3eeb4acaa58d68c3feda29b0c79021a41e899d7.zip
disabled debug messages
Diffstat (limited to 'xorg')
-rw-r--r--xorg/server/module/rdpClientCon.c18
-rw-r--r--xorg/server/module/rdpCursor.c12
2 files changed, 15 insertions, 15 deletions
diff --git a/xorg/server/module/rdpClientCon.c b/xorg/server/module/rdpClientCon.c
index 64fdcfda..1e218b8e 100644
--- a/xorg/server/module/rdpClientCon.c
+++ b/xorg/server/module/rdpClientCon.c
@@ -769,7 +769,7 @@ rdpClientConProcessMsgClientRegion(rdpPtr dev, rdpClientCon *clientCon)
RegionRec reg;
BoxRec box;
- LLOGLN(0, ("rdpClientConProcessMsgClientRegion:"));
+ LLOGLN(10, ("rdpClientConProcessMsgClientRegion:"));
s = clientCon->in_s;
in_uint32_le(s, flags);
@@ -778,9 +778,9 @@ rdpClientConProcessMsgClientRegion(rdpPtr dev, rdpClientCon *clientCon)
in_uint32_le(s, y);
in_uint32_le(s, cx);
in_uint32_le(s, cy);
- LLOGLN(0, ("rdpClientConProcessMsgClientRegion: %d %d %d %d flags 0x%8.8x",
+ LLOGLN(10, ("rdpClientConProcessMsgClientRegion: %d %d %d %d flags 0x%8.8x",
x, y, cx, cy, flags));
- LLOGLN(0, ("rdpClientConProcessMsgClientRegion: rect_id %d rect_id_ack %d",
+ LLOGLN(10, ("rdpClientConProcessMsgClientRegion: rect_id %d rect_id_ack %d",
clientCon->rect_id, clientCon->rect_id_ack));
box.x1 = x;
@@ -789,7 +789,7 @@ rdpClientConProcessMsgClientRegion(rdpPtr dev, rdpClientCon *clientCon)
box.y2 = box.y1 + cy;
rdpRegionInit(&reg, &box, 0);
- LLOGLN(0, ("rdpClientConProcessMsgClientRegion: %d %d %d %d",
+ LLOGLN(10, ("rdpClientConProcessMsgClientRegion: %d %d %d %d",
box.x1, box.y1, box.x2, box.y2));
rdpRegionSubtract(clientCon->shmRegion, clientCon->shmRegion, &reg);
rdpRegionUninit(&reg);
@@ -1857,12 +1857,12 @@ rdpDeferredUpdateCallback(OsTimerPtr timer, CARD32 now, pointer arg)
int index;
BoxRec box;
- LLOGLN(0, ("rdpDeferredUpdateCallback:"));
+ LLOGLN(10, ("rdpDeferredUpdateCallback:"));
clientCon = (rdpClientCon *) arg;
if (clientCon->rect_id != clientCon->rect_id_ack)
{
- LLOGLN(0, ("rdpDeferredUpdateCallback: reschedual"));
+ LLOGLN(10, ("rdpDeferredUpdateCallback: reschedual"));
clientCon->updateTimer = TimerSet(clientCon->updateTimer, 0, 40,
rdpDeferredUpdateCallback, clientCon);
return 0;
@@ -1874,7 +1874,7 @@ rdpDeferredUpdateCallback(OsTimerPtr timer, CARD32 now, pointer arg)
for (index = 0; index < num_rects; index++)
{
box = REGION_RECTS(clientCon->dirtyRegion)[index];
- LLOGLN(0, (" x1 %d y1 %d x2 %d y2 %d cx %d cy %d", box.x1, box.y1,
+ LLOGLN(10, (" x1 %d y1 %d x2 %d y2 %d cx %d cy %d", box.x1, box.y1,
box.x2, box.y2, box.x2 - box.x1, box.y2 - box.y1));
rdpClientConSendArea(clientCon->dev, clientCon, NULL, box.x1, box.y1,
box.x2 - box.x1, box.y2 - box.y1);
@@ -2030,7 +2030,7 @@ rdpClientConSendArea(rdpPtr dev, rdpClientCon *clientCon,
{
if (id->shmem_pixels != 0)
{
- LLOGLN(0, ("rdpClientConSendArea: using shmem"));
+ LLOGLN(10, ("rdpClientConSendArea: using shmem"));
box.x1 = x;
box.y1 = y;
box.x2 = box.x1 + w;
@@ -2055,7 +2055,7 @@ rdpClientConSendArea(rdpPtr dev, rdpClientCon *clientCon,
out_uint16_le(s, 60);
out_uint16_le(s, size);
clientCon->count++;
- LLOGLN(0, ("rdpClientConSendArea: 2 x %d y %d w %d h %d", x, y, w, h));
+ LLOGLN(10, ("rdpClientConSendArea: 2 x %d y %d w %d h %d", x, y, w, h));
out_uint16_le(s, x);
out_uint16_le(s, y);
out_uint16_le(s, w);
diff --git a/xorg/server/module/rdpCursor.c b/xorg/server/module/rdpCursor.c
index 21b9c47c..84a6cc81 100644
--- a/xorg/server/module/rdpCursor.c
+++ b/xorg/server/module/rdpCursor.c
@@ -49,7 +49,7 @@ cursor
Bool
rdpSpriteRealizeCursor(DeviceIntPtr pDev, ScreenPtr pScr, CursorPtr pCurs)
{
- LLOGLN(0, ("rdpSpriteRealizeCursor:"));
+ LLOGLN(10, ("rdpSpriteRealizeCursor:"));
return TRUE;
}
@@ -57,7 +57,7 @@ rdpSpriteRealizeCursor(DeviceIntPtr pDev, ScreenPtr pScr, CursorPtr pCurs)
Bool
rdpSpriteUnrealizeCursor(DeviceIntPtr pDev, ScreenPtr pScr, CursorPtr pCurs)
{
- LLOGLN(0, ("rdpSpriteUnrealizeCursor:"));
+ LLOGLN(10, ("rdpSpriteUnrealizeCursor:"));
return TRUE;
}
@@ -66,21 +66,21 @@ void
rdpSpriteSetCursor(DeviceIntPtr pDev, ScreenPtr pScr, CursorPtr pCurs,
int x, int y)
{
- LLOGLN(0, ("rdpSpriteSetCursor:"));
+ LLOGLN(10, ("rdpSpriteSetCursor:"));
}
/******************************************************************************/
void
rdpSpriteMoveCursor(DeviceIntPtr pDev, ScreenPtr pScr, int x, int y)
{
- LLOGLN(0, ("rdpSpriteMoveCursor:"));
+ LLOGLN(10, ("rdpSpriteMoveCursor:"));
}
/******************************************************************************/
Bool
rdpSpriteDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScr)
{
- LLOGLN(0, ("rdpSpriteDeviceCursorInitialize:"));
+ LLOGLN(10, ("rdpSpriteDeviceCursorInitialize:"));
return TRUE;
}
@@ -88,6 +88,6 @@ rdpSpriteDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScr)
void
rdpSpriteDeviceCursorCleanup(DeviceIntPtr pDev, ScreenPtr pScr)
{
- LLOGLN(0, ("rdpSpriteDeviceCursorCleanup:"));
+ LLOGLN(10, ("rdpSpriteDeviceCursorCleanup:"));
xorgxrdpDownDown(pScr);
}