changed some INFOs to DEBUGs
authorErik Walthinsen <omega@temple-baptist.org>
Sun, 15 Apr 2001 22:52:45 +0000 (22:52 +0000)
committerErik Walthinsen <omega@temple-baptist.org>
Sun, 15 Apr 2001 22:52:45 +0000 (22:52 +0000)
Original commit message from CVS:
changed some INFOs to DEBUGs

gst/autoplug/gststaticautoplug.c
gst/autoplug/gststaticautoplugrender.c

index 7d42d4b..ca06fe9 100644 (file)
@@ -120,7 +120,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
           desttemp->direction == GST_PAD_SINK) {
        if (gst_caps_check_compatibility (gst_padtemplate_get_caps (srctemp), 
                                gst_padtemplate_get_caps (desttemp))) {
-         GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
+         GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
                          "factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
           return TRUE;
        }
@@ -130,7 +130,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
     }
     srctemps = g_list_next (srctemps);
   }
-  GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
+  GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
                  "factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
   return FALSE;
 }
index 7f1413f..ec30e37 100644 (file)
@@ -119,7 +119,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
       if (srctemp->direction == GST_PAD_SRC &&
           desttemp->direction == GST_PAD_SINK) {
        if (gst_caps_check_compatibility (GST_PADTEMPLATE_CAPS (srctemp), GST_PADTEMPLATE_CAPS (desttemp))) {
-         GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
+         GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
                          "factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
           return TRUE;
        }
@@ -129,7 +129,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
     }
     srctemps = g_list_next (srctemps);
   }
-  GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
+  GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
                  "factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
   return FALSE;
 }