summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2012-03-23 13:44:12 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2012-03-23 13:44:20 -0400
commit629cc095af3b031dd4661377608f3718b59575ed (patch)
tree6147641806fac6539807d5cc5a1be10c29c40bbd /tests
parent04cc2bbca52b7047e8b7baf6e39fc99646babd42 (diff)
downloadfarstream-629cc095af3b031dd4661377608f3718b59575ed.tar.gz
tests: Make debug messages into GST_DEBUG
Diffstat (limited to 'tests')
-rw-r--r--tests/check/msn/conference.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/check/msn/conference.c b/tests/check/msn/conference.c
index 8d80d665..ec391315 100644
--- a/tests/check/msn/conference.c
+++ b/tests/check/msn/conference.c
@@ -119,7 +119,7 @@ bus_watch (GstBus *bus, GstMessage *message, gpointer user_data)
GList *list = g_list_append (NULL, candidate);
gboolean add_remote_candidates_res;
- g_debug ("Setting candidate: %s %d",
+ GST_DEBUG ("Setting candidate: %s %d",
candidate->ip, candidate->port);
add_remote_candidates_res = fs_stream_add_remote_candidates (
dat->target->stream, list, &error);
@@ -150,7 +150,7 @@ bus_watch (GstBus *bus, GstMessage *message, gpointer user_data)
gchar *debug = NULL;
gst_message_parse_warning (message, &error, &debug);
- g_debug ("%d: Got a warning on the BUS: %s (%s)",
+ GST_DEBUG ("%d: Got a warning on the BUS: %s (%s)",
error->code,
error->message, debug);
g_error_free (error);
@@ -180,7 +180,7 @@ stream_src_pad_added (FsStream *stream, GstPad *pad, FsCodec *codec,
GstElement *sink = gst_element_factory_make ("fakesink", NULL);
GstPad *sinkpad;
- g_debug ("pad added");
+ GST_DEBUG ("pad added");
ts_fail_unless (sink != NULL);