From b138d3bfbccbfbd87397c255723418ec5b1b2443 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 3 Jan 2012 19:10:41 -0800 Subject: [PATCH] Removed handle_messages() debug lines. --- protocols/rdp/src/guac_handlers.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/protocols/rdp/src/guac_handlers.c b/protocols/rdp/src/guac_handlers.c index b7b9b1d1..2d1bc20c 100644 --- a/protocols/rdp/src/guac_handlers.c +++ b/protocols/rdp/src/guac_handlers.c @@ -78,8 +78,6 @@ int rdp_guac_client_handle_messages(guac_client* client) { fd_set rfds, wfds; - guac_client_log_info(client, "handle_messages() start"); - /* get rdp fds */ if (!freerdp_get_fds(rdp_inst, read_fds, &read_count, write_fds, &write_count)) { guac_client_log_error(client, "Unable to read RDP file descriptors."); @@ -143,7 +141,6 @@ int rdp_guac_client_handle_messages(guac_client* client) { } /* Success */ - guac_client_log_info(client, "handle_messages() end"); return 0; }