nle: Downgrade some INFO to DEBUG.
authorMathieu Duponchelle <mathieu.duponchelle@opencreed.com>
Tue, 28 Oct 2014 16:33:09 +0000 (17:33 +0100)
committerThibault Saunier <tsaunier@gnome.org>
Mon, 10 Nov 2014 15:22:40 +0000 (16:22 +0100)
+ makes it more pleasant to read logs in info.

ges/nle/nlecomposition.c
ges/nle/nleobject.c

index 626149c..31aee3e 100644 (file)
@@ -393,7 +393,7 @@ _start_task (NleComposition * comp)
     task = gst_task_new ((GstTaskFunction) _execute_actions, comp, NULL);
     gst_object_set_name (GST_OBJECT_CAST (task), taskname);
     gst_task_set_lock (task, GET_TASK_LOCK (comp));
-    GST_INFO_OBJECT (comp, "created task %p", task);
+    GST_DEBUG_OBJECT (comp, "created task %p", task);
     comp->task = task;
   }
 
index a267ec8..f97e5d4 100644 (file)
@@ -460,7 +460,7 @@ update_values (NleObject * object)
 static gboolean
 nle_object_commit_func (NleObject * object, gboolean recurse)
 {
-  GST_INFO_OBJECT (object, "Commiting object changed");
+  GST_DEBUG_OBJECT (object, "Commiting object changed");
 
   if (object->commit_needed == FALSE) {
     GST_INFO_OBJECT (object, "No changes to commit");
@@ -470,7 +470,7 @@ nle_object_commit_func (NleObject * object, gboolean recurse)
 
   update_values (object);
 
-  GST_INFO_OBJECT (object, "Done commiting");
+  GST_DEBUG_OBJECT (object, "Done commiting");
 
   return TRUE;
 }