Add DALI_LOG_RELEASE_INFO for debug 46/163946/2
authorsunghyun kim <scholb.kim@samsung.com>
Mon, 4 Dec 2017 10:22:35 +0000 (19:22 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 14 Dec 2017 07:56:01 +0000 (07:56 +0000)
DALi need to new macro for debug
it can use without debug option

Change-Id: Ifdf500770cf06e6fd03c1163762cfe1cbd7e80db

dali/integration-api/debug.h

index 6ba890d..8e59859 100644 (file)
@@ -130,6 +130,11 @@ DALI_IMPORT_API void UninstallLogFunction();
  */
 #define DALI_LOG_RENDER_INFO(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
 
+/**
+ * Provides unfiltered logging for release
+ */
+#define DALI_LOG_RELEASE_INFO(format, args...)     Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, format, ## args)
+
 #ifdef DEBUG_ENABLED
 
 /**