added newlines to debug output

Original commit message from CVS:
added newlines to debug output
This commit is contained in:
Thomas Vander Stichele 2001-05-01 13:16:43 +00:00
parent e62a1c69d6
commit 861ebf934c
2 changed files with 4 additions and 4 deletions

View file

@ -124,7 +124,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
if (gst_caps_check_compatibility (gst_padtemplate_get_caps (srctemp),
gst_padtemplate_get_caps (desttemp))) {
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
"factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
"factory \"%s\" can connect with factory \"%s\"\n", src->name, dest->name);
return TRUE;
}
}
@ -134,7 +134,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
srctemps = g_list_next (srctemps);
}
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
"factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
"factory \"%s\" cannot connect with factory \"%s\"\n", src->name, dest->name);
return FALSE;
}

View file

@ -123,7 +123,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
desttemp->direction == GST_PAD_SINK) {
if (gst_caps_check_compatibility (GST_PADTEMPLATE_CAPS (srctemp), GST_PADTEMPLATE_CAPS (desttemp))) {
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
"factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
"factory \"%s\" can connect with factory \"%s\"\n", src->name, dest->name);
return TRUE;
}
}
@ -133,7 +133,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
srctemps = g_list_next (srctemps);
}
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
"factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
"factory \"%s\" cannot connect with factory \"%s\"\n", src->name, dest->name);
return FALSE;
}