From: Edward Hervey Date: Sun, 14 Aug 2016 15:44:36 +0000 (+0200) Subject: ges-timeline: Demote some debugging statements X-Git-Tag: 1.19.3~493^2~967 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53fb174443bd4a994b1d2f866a88e2c7e8717288;p=platform%2Fupstream%2Fgstreamer.git ges-timeline: Demote some debugging statements locking should be in a lower level to avoid too many messages --- diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 3ef1d07..27bef58 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