[Webkit-unassigned] [Bug 89350] [GStreamer] Use GST_DEBUG instead of LOG_VERBOSE

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 18 09:35:04 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=89350





--- Comment #2 from Philippe Normand <pnormand at igalia.com>  2012-06-18 09:35:03 PST ---
(In reply to comment #1)
> Is that the behavior of the LOG macros on all platforms, or just a result of the GTK+ implementation of the LOG macros?

On all platforms, see Source/WTF/wtf/Assertions.h

#if COMPILER(MSVC7_OR_LOWER)
#define LOG_VERBOSE(channel) ((void)0)
#elif LOG_DISABLED
#define LOG_VERBOSE(channel, ...) ((void)0)
#else
#define LOG_VERBOSE(channel, ...) WTFLogVerbose(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, &JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__)
#endif

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list