diff --git a/sflphone-client-gnome/src/contacts/calltree.c b/sflphone-client-gnome/src/contacts/calltree.c
index 62fa1fab1dc4aaecaff842819436c03d5f106788..b93726a4b1d21bb2566623cdec6f58eacbbf0f8f 100644
--- a/sflphone-client-gnome/src/contacts/calltree.c
+++ b/sflphone-client-gnome/src/contacts/calltree.c
@@ -1240,7 +1240,7 @@ static void drag_begin_cb(GtkWidget *widget, GdkDragContext *dc, gpointer data)
 
 	GtkTargetList* target_list;
 
-	// g_print("drag_begin_cb %s\n", dragged_path);
+	// DEBUG("drag_begin_cb %s\n", dragged_path);
 	if((target_list = gtk_drag_source_get_target_list(widget)) != NULL);
 
 
@@ -1435,7 +1435,7 @@ static void drag_end_cb(GtkWidget * widget, GdkDragContext * context, gpointer d
 void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint t, gpointer data)
 {
 
-	// g_print("drag_data_received_cb\n");
+	// DEBUG("drag_data_received_cb\n");
 	GtkTreeView *tree_view = GTK_TREE_VIEW(widget);
 	GtkTreePath *drop_path;
 	GtkTreeViewDropPosition position;
@@ -1477,7 +1477,7 @@ void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, gint x, g
 				dragged_call_id = "NULL";
 				dragged_call = NULL;
 				dragged_conf = NULL;
-				g_print("    AFTER dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
+				// DEBUG("    AFTER dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
 				break;
 
 			case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
@@ -1493,7 +1493,7 @@ void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, gint x, g
 					dragged_call_id = ((conference_obj_t*)g_value_get_pointer(&val))->_confID;
 					dragged_conf = (conference_obj_t*)g_value_get_pointer(&val);
 				}
-				g_print("    INTO_OR_AFTER dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
+				// DEBUG("    INTO_OR_AFTER dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
 				break;
 
 			case GTK_TREE_VIEW_DROP_BEFORE:
@@ -1502,7 +1502,7 @@ void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, gint x, g
 				dragged_call_id = "NULL";
 				dragged_call = NULL;
 				dragged_conf = NULL;
-				g_print("    BEFORE dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
+				// DEBUG("    BEFORE dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
 				break;
 
 			case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
@@ -1518,7 +1518,7 @@ void drag_data_received_cb(GtkWidget *widget, GdkDragContext *context, gint x, g
 					dragged_call_id = ((conference_obj_t*)g_value_get_pointer(&val))->_confID;
 					dragged_conf = (conference_obj_t*)g_value_get_pointer(&val);
 				}
-				g_print("    INTO_OR_BEFORE dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
+				// DEBUG("    INTO_OR_BEFORE dragged_path %s, dragged_call_id %s, dragged_path_depth %i\n", dragged_path, dragged_call_id, dragged_path_depth);
 				break;
 
 			default:
diff --git a/sflphone-client-gnome/src/dbus/dbus.c b/sflphone-client-gnome/src/dbus/dbus.c
index 643fd50586107c364adf6a0b6be30d98c9fbdb5b..57fb577203109fec4bba8bdf7e3bb1442e8426cf 100644
--- a/sflphone-client-gnome/src/dbus/dbus.c
+++ b/sflphone-client-gnome/src/dbus/dbus.c
@@ -204,12 +204,12 @@ call_state_cb (DBusGProxy *proxy UNUSED,
 
             if (g_strcasecmp (type, "0") == 0)
             {
-                g_print ("incoming\n");
+                // DEBUG("incoming\n");
                 new_call->_history_state = INCOMING;
             }
             else
             {
-                g_print ("outgoing\n");
+                // DEBUG("outgoing\n");
                 new_call->_history_state = OUTGOING;
             }
 
diff --git a/sflphone-client-gnome/src/uimanager.c b/sflphone-client-gnome/src/uimanager.c
index 26effb27cdb41e166171e87e6c1c4415c03f19fa..f870a71cb286537595429102b00e4c9757bf1a74 100644
--- a/sflphone-client-gnome/src/uimanager.c
+++ b/sflphone-client-gnome/src/uimanager.c
@@ -415,7 +415,7 @@ void update_actions()
 static void volume_bar_cb (GtkToggleAction *togglemenuitem, gpointer user_data)
 {
 	gboolean toggled = gtk_toggle_action_get_active (togglemenuitem);
-	g_print ("%i\n", toggled);
+	// DEBUG("%i\n", toggled);
 	main_window_volume_controls(toggled);
 	if (toggled || SHOW_VOLUME)
 		dbus_set_volume_controls(toggled);