mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
nle: Downgrade some INFO to DEBUG.
+ makes it more pleasant to read logs in info.
This commit is contained in:
parent
79230eef1f
commit
3f97397b4f
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue