Skip to content
Snippets Groups Projects
Commit d6a2bb56 authored by Rafaël Carré's avatar Rafaël Carré
Browse files

gnome: remove some debug

parent 9c4e7806
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,6 @@ static void
new_call_created_cb (DBusGProxy *proxy UNUSED, const gchar *accountID,
const gchar *callID, const gchar *to, void *foo UNUSED)
{
DEBUG("DBUS: New Call (%s) created to (%s)", callID, to);
callable_obj_t *c = create_new_call(CALL, CALL_STATE_RINGING, callID, accountID, to, to);
calllist_add_call(current_calls, c);
......@@ -79,8 +77,6 @@ incoming_call_cb (DBusGProxy *proxy UNUSED, const gchar* accountID,
gchar *peer_name = call_get_peer_name (from);
gchar *peer_number = call_get_peer_number (from);
DEBUG ("DBus: Incoming call (%s) from %s (%s : %s)", callID, from, peer_name, peer_number);
callable_obj_t *c = create_new_call (CALL, CALL_STATE_INCOMING, callID, accountID, peer_name, peer_number);
g_free(peer_number);
......@@ -150,7 +146,6 @@ static void
call_state_cb (DBusGProxy *proxy UNUSED, const gchar* callID, const gchar* state,
void * foo UNUSED)
{
DEBUG ("DBUS: Call %s state %s",callID, state);
callable_obj_t *c = calllist_get_call (current_calls, callID);
if (c) {
if (g_strcmp0 (state, "HUNGUP") == 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment