From 8439ffd8417eed1c54c82b7f0eefed5eb2ed3382 Mon Sep 17 00:00:00 2001 From: sunghyun kim Date: Mon, 4 Dec 2017 19:22:35 +0900 Subject: [PATCH 1/1] Add DALI_LOG_RELEASE_INFO for debug DALi need to new macro for debug it can use without debug option Change-Id: Ifdf500770cf06e6fd03c1163762cfe1cbd7e80db --- dali/integration-api/debug.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dali/integration-api/debug.h b/dali/integration-api/debug.h index 6ba890d..8e59859 100644 --- a/dali/integration-api/debug.h +++ b/dali/integration-api/debug.h @@ -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 /** -- 2.7.4