summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/voicecall.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/voicecall.c b/src/voicecall.c
index d6e8539a..ec001c09 100644
--- a/src/voicecall.c
+++ b/src/voicecall.c
@@ -1951,8 +1951,9 @@ void ofono_voicecall_notify(struct ofono_voicecall *vc,
struct ofono_call *newcall;
DBG("Got a voicecall event, status: %d, id: %u, number: %s"
- " called_number: %s", call->status, call->id,
- call->phone_number.number, call->called_number.number);
+ " called_number: %s, called_name %s", call->status,
+ call->id, call->phone_number.number,
+ call->called_number.number, call->name);
l = g_slist_find_custom(vc->call_list, GUINT_TO_POINTER(call->id),
call_compare_by_id);