projects
/
platform
/
core
/
uifw
/
dali-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ecd140
)
Add DALI_LOG_RELEASE_INFO for debug
07/162607/2
author
sunghyun kim
<scholb.kim@samsung.com>
Mon, 4 Dec 2017 10:22:35 +0000
(19:22 +0900)
committer
sunghyun kim
<scholb.kim@samsung.com>
Mon, 4 Dec 2017 10:26:59 +0000
(10:26 +0000)
DALi need to new macro for debug
it can use without debug option
Change-Id: Ifdf500770cf06e6fd03c1163762cfe1cbd7e80db
dali/integration-api/debug.h
patch
|
blob
|
history
diff --git
a/dali/integration-api/debug.h
b/dali/integration-api/debug.h
index 6ba890dbc94137588782cc987c658df6b9de4651..8e5985980d76f4be3abb73340972cc86d2d74926 100644
(file)
--- 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
/**