nle: Downgrade some INFO to DEBUG.

+ makes it more pleasant to read logs in info.
This commit is contained in:
Mathieu Duponchelle 2014-10-28 17:33:09 +01:00 committed by Thibault Saunier
parent 79230eef1f
commit 3f97397b4f
2 changed files with 3 additions and 3 deletions

View 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;
}

View 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;
}