From 53fb174443bd4a994b1d2f866a88e2c7e8717288 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sun, 14 Aug 2016 17:44:36 +0200 Subject: [PATCH] ges-timeline: Demote some debugging statements locking should be in a lower level to avoid too many messages --- ges/ges-timeline.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 3ef1d07fed..27bef58439 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -71,18 +71,18 @@ GST_DEBUG_CATEGORY_STATIC (ges_timeline_debug); /* lock to protect dynamic callbacks, like pad-added */ #define DYN_LOCK(timeline) (&GES_TIMELINE (timeline)->priv->dyn_mutex) #define LOCK_DYN(timeline) G_STMT_START { \ - GST_INFO_OBJECT (timeline, "Getting dynamic lock from %p", \ + GST_LOG_OBJECT (timeline, "Getting dynamic lock from %p", \ g_thread_self()); \ g_rec_mutex_lock (DYN_LOCK (timeline)); \ - GST_INFO_OBJECT (timeline, "Got Dynamic lock from %p", \ + GST_LOG_OBJECT (timeline, "Got Dynamic lock from %p", \ g_thread_self()); \ } G_STMT_END #define UNLOCK_DYN(timeline) G_STMT_START { \ - GST_INFO_OBJECT (timeline, "Unlocking dynamic lock from %p", \ + GST_LOG_OBJECT (timeline, "Unlocking dynamic lock from %p", \ g_thread_self()); \ g_rec_mutex_unlock (DYN_LOCK (timeline)); \ - GST_INFO_OBJECT (timeline, "Unlocked Dynamic lock from %p", \ + GST_LOG_OBJECT (timeline, "Unlocked Dynamic lock from %p", \ g_thread_self()); \ } G_STMT_END