From 3f97397b4f5fe64dd2362d56c18dabfc48a9a1d2 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Tue, 28 Oct 2014 17:33:09 +0100 Subject: [PATCH] nle: Downgrade some INFO to DEBUG. + makes it more pleasant to read logs in info. --- ges/nle/nlecomposition.c | 2 +- ges/nle/nleobject.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ges/nle/nlecomposition.c b/ges/nle/nlecomposition.c index 626149c..31aee3e 100644 --- a/ges/nle/nlecomposition.c +++ b/ges/nle/nlecomposition.c @@ -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; } diff --git a/ges/nle/nleobject.c b/ges/nle/nleobject.c index a267ec8..f97e5d4 100644 --- a/ges/nle/nleobject.c +++ b/ges/nle/nleobject.c @@ -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; } -- 2.7.4