[svn r151] remove debug messages trunk
authorrenatofilho
Thu Nov 30 19:03:57 2006 +0000 (2006-11-30)
branchtrunk
changeset 150ae6deaca5e7b
parent 149 4b1889efb573
child 151 1799c8782451
[svn r151] remove debug messages
gmyth/src/gmyth_debug.h
gmyth/src/gmyth_socket.c
gmyth/src/gmyth_uri.c
     1.1 --- a/gmyth/src/gmyth_debug.h	Thu Nov 30 18:09:38 2006 +0000
     1.2 +++ b/gmyth/src/gmyth_debug.h	Thu Nov 30 19:03:57 2006 +0000
     1.3 @@ -29,6 +29,7 @@
     1.4  
     1.5  #include <stdarg.h>
     1.6  #include <glib.h>
     1.7 +#include <time.h>
     1.8  
     1.9  G_BEGIN_DECLS
    1.10  
     2.1 --- a/gmyth/src/gmyth_socket.c	Thu Nov 30 18:09:38 2006 +0000
     2.2 +++ b/gmyth/src/gmyth_socket.c	Thu Nov 30 19:03:57 2006 +0000
     2.3 @@ -892,7 +892,6 @@
     2.4  
     2.5              buffer = g_new0 (gchar, len+1);
     2.6  	
     2.7 -            g_debug ("BUFF %s : len %d : MYTH_PROTOCOL_FIELD_SIZE %d", buffer, len, MYTH_PROTOCOL_FIELD_SIZE);
     2.8  		    bytes_read = 0;
     2.9  		    io_status = g_io_channel_read_chars( gmyth_socket->sd_io_ch, buffer, len, &bytes_read, &error);
    2.10  		    buffer[bytes_read] = '\0';
     3.1 --- a/gmyth/src/gmyth_uri.c	Thu Nov 30 18:09:38 2006 +0000
     3.2 +++ b/gmyth/src/gmyth_uri.c	Thu Nov 30 19:03:57 2006 +0000
     3.3 @@ -161,7 +161,6 @@
     3.4  {
     3.5  	gboolean ret = FALSE;
     3.6  	
     3.7 -    g_debug ("URI: %p PROTO: %p", uri->uri, uri->protocol);
     3.8  	g_return_val_if_fail( uri != NULL && uri->uri != NULL && uri->protocol != NULL, FALSE );
     3.9  	
    3.10  	if ( gmyth_strstr( uri->uri->str, GMYTH_URI_PROTOCOL_DELIM ) == 0 || strlen(uri->protocol->str) > 0 )
    3.11 @@ -227,7 +226,6 @@
    3.12  	protoIdx = gmyth_strstr (value, GMYTH_URI_PROTOCOL_DELIM);
    3.13  	if (0 < protoIdx) {
    3.14          uri->protocol = g_string_new_len (value, protoIdx);
    3.15 -        g_debug ("PROTO: %s IDX: %d", uri->protocol->str, protoIdx);
    3.16  		currIdx += protoIdx + strlen( GMYTH_URI_PROTOCOL_DELIM );
    3.17  	}
    3.18