diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 16:28:23 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:09 +0800 |
commit | 54af9bea4d1e1f4e15207969f2ab89a012ad4d10 (patch) | |
tree | 056efb204743fa43e424b3872efd4e946772005c /src/empathy-call-handler.c | |
parent | 043b2fec4b21707ef62aebc3d80fc54c319e90f2 (diff) | |
download | gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar.gz gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar.bz2 gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar.lz gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar.xz gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.tar.zst gsoc2013-empathy-54af9bea4d1e1f4e15207969f2ab89a012ad4d10.zip |
Turn g_prints into DEBUGs
Diffstat (limited to 'src/empathy-call-handler.c')
-rw-r--r-- | src/empathy-call-handler.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-call-handler.c b/src/empathy-call-handler.c index 18d0d1f9e..1db5a34ef 100644 --- a/src/empathy-call-handler.c +++ b/src/empathy-call-handler.c @@ -656,7 +656,7 @@ empathy_call_handler_bus_message (EmpathyCallHandler *handler, FsCodec *codec; FsSession *session; - g_print ("empathy_call_handler_bus_message: farsight-send-codec-changed\n"); + DEBUG ("farsight-send-codec-changed"); val = gst_structure_get_value (s, "codec"); codec = g_value_get_boxed (val); @@ -673,7 +673,7 @@ empathy_call_handler_bus_message (EmpathyCallHandler *handler, GList *codecs; FsStream *stream; - g_print ("empathy_call_handler_bus_message: farsight-recv-codecs-changed\n"); + DEBUG ("farsight-recv-codecs-changed"); val = gst_structure_get_value (s, "codecs"); codecs = g_value_get_boxed (val); @@ -690,7 +690,7 @@ empathy_call_handler_bus_message (EmpathyCallHandler *handler, FsCandidate *remote_candidate, *local_candidate; FsStream *stream; - g_print ("empathy_call_handler_bus_message: farsight-new-active-candidate-pair\n"); + DEBUG ("farsight-new-active-candidate-pair"); val = gst_structure_get_value (s, "remote-candidate"); remote_candidate = g_value_get_boxed (val); @@ -821,7 +821,7 @@ on_tf_channel_content_removed_cb (TfChannel *tfchannel, GstPad *spad; gboolean retval; - g_print ("removing content\n"); + DEBUG ("removing content"); g_object_get (content, "media-type", &mtype, "sink-pad", &spad, NULL); |