structure: Demote WARNING to INFO
authorEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 6 Jul 2012 10:45:29 +0000 (12:45 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 6 Jul 2012 10:48:44 +0000 (12:48 +0200)
It is common to use gst_structure_get() to know if a field is present
or not.

gst/gststructure.c

index fdc65e1..ea92016 100644 (file)
@@ -2806,13 +2806,13 @@ gst_structure_get_valist (const GstStructure * structure,
 /* ERRORS */
 no_such_field:
   {
-    GST_WARNING ("Expected field '%s' in structure: %" GST_PTR_FORMAT,
+    GST_INFO ("Expected field '%s' in structure: %" GST_PTR_FORMAT,
         field_name, structure);
     return FALSE;
   }
 wrong_type:
   {
-    GST_WARNING ("Expected field '%s' in structure to be of type '%s', but "
+    GST_INFO ("Expected field '%s' in structure to be of type '%s', but "
         "field was of type '%s': %" GST_PTR_FORMAT, field_name,
         GST_STR_NULL (g_type_name (expected_type)),
         G_VALUE_TYPE_NAME (gst_structure_get_value (structure, field_name)),