[anjuta-extras] profiler: Get rid of some debug g_print calls



commit 3f19d1efb0c789fcd1da783a3839f1069db29c77
Author: James Liggett <jrliggett cox net>
Date:   Mon Apr 12 19:29:10 2010 -0700

    profiler: Get rid of some debug g_print calls

 plugins/profiler/gprof-call-graph.c   |    2 --
 plugins/profiler/gprof-flat-profile.c |    2 --
 2 files changed, 0 insertions(+), 4 deletions(-)
---
diff --git a/plugins/profiler/gprof-call-graph.c b/plugins/profiler/gprof-call-graph.c
index a436911..0258e29 100644
--- a/plugins/profiler/gprof-call-graph.c
+++ b/plugins/profiler/gprof-call-graph.c
@@ -265,8 +265,6 @@ gprof_call_graph_new (GIOChannel *stream, GProfFlatProfile *flat_profile)
 	while (g_io_channel_read_line (stream, &buffer, NULL, &line_term_pos, 
 		                            NULL) == G_IO_STATUS_NORMAL)
 	{
-		g_print ("Line data: %s\n", buffer);
-
 		/* If the first character of the line is 12, that's the end of the call
 		 * graph. */
 		if (buffer[0] == 12)
diff --git a/plugins/profiler/gprof-flat-profile.c b/plugins/profiler/gprof-flat-profile.c
index 937df14..82fc33e 100644
--- a/plugins/profiler/gprof-flat-profile.c
+++ b/plugins/profiler/gprof-flat-profile.c
@@ -179,8 +179,6 @@ gprof_flat_profile_new (GIOChannel *stream)
 	while (g_io_channel_read_line (stream, &buffer, NULL, &line_term_pos,
 	                               NULL) == G_IO_STATUS_NORMAL)
 	{
-		g_print ("Line data: %s", buffer);
-
 		/* If the first character is 12, that's the end of the flat profile. */
 		if (buffer[0] == 12)
 		{



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]