iface-modem-voice: minor logging update

This commit is contained in:
Aleksander Morgado
2019-07-01 15:52:41 +02:00
parent df8918ff8c
commit 13b4c9f6ac

View File

@@ -1268,7 +1268,7 @@ setup_call_list_polling (MMCallList *call_list,
/*****************************************************************************/ /*****************************************************************************/
static void static void
update_message_list (MmGdbusModemVoice *skeleton, update_call_list (MmGdbusModemVoice *skeleton,
MMCallList *list) MMCallList *list)
{ {
gchar **paths; gchar **paths;
@@ -1285,8 +1285,8 @@ call_added (MMCallList *list,
const gchar *call_path, const gchar *call_path,
MmGdbusModemVoice *skeleton) MmGdbusModemVoice *skeleton)
{ {
mm_dbg ("Added CALL at '%s'", call_path); mm_dbg ("Added call at '%s'", call_path);
update_message_list (skeleton, list); update_call_list (skeleton, list);
mm_gdbus_modem_voice_emit_call_added (skeleton, call_path); mm_gdbus_modem_voice_emit_call_added (skeleton, call_path);
} }
@@ -1295,8 +1295,8 @@ call_deleted (MMCallList *list,
const gchar *call_path, const gchar *call_path,
MmGdbusModemVoice *skeleton) MmGdbusModemVoice *skeleton)
{ {
mm_dbg ("Deleted CALL at '%s'", call_path); mm_dbg ("Deleted call at '%s'", call_path);
update_message_list (skeleton, list); update_call_list (skeleton, list);
mm_gdbus_modem_voice_emit_call_deleted (skeleton, call_path); mm_gdbus_modem_voice_emit_call_deleted (skeleton, call_path);
} }