structure: Demote WARNING to DEBUG
authorEdward Hervey <edward.hervey@collabora.co.uk>
Wed, 11 Jul 2012 08:24:51 +0000 (10:24 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Wed, 11 Jul 2012 08:24:51 +0000 (10:24 +0200)
It is not an issue to get fields that don't exist, calling code should
handle that.

gst/gststructure.c

index 7d03379..4ab5788 100644 (file)
@@ -2851,13 +2851,13 @@ gst_structure_id_get_valist (const GstStructure * structure,
 /* ERRORS */
 no_such_field:
   {
-    GST_WARNING ("Expected field '%s' in structure: %" GST_PTR_FORMAT,
+    GST_DEBUG ("Expected field '%s' in structure: %" GST_PTR_FORMAT,
         GST_STR_NULL (g_quark_to_string (field_id)), structure);
     return FALSE;
   }
 wrong_type:
   {
-    GST_WARNING ("Expected field '%s' in structure to be of type '%s', but "
+    GST_DEBUG ("Expected field '%s' in structure to be of type '%s', but "
         "field was of type '%s': %" GST_PTR_FORMAT,
         g_quark_to_string (field_id),
         GST_STR_NULL (g_type_name (expected_type)),