Use TIZEN_ENGINEER_MODE macro instead of _SECURE_LOG
authorKwangYong Choi <ky0.choi@samsung.com>
Wed, 31 Jul 2013 01:10:49 +0000 (10:10 +0900)
committerKwangYong Choi <ky0.choi@samsung.com>
Wed, 31 Jul 2013 01:17:00 +0000 (10:17 +0900)
[Title] Use TIZEN_ENGINEER_MODE macro instead of _SECURE_LOG.
[Issue#] N/A
[Problem] Dlog usage is changed.
[Cause] N/A
[Solution] Use TIZEN_ENGINEER_MODE macro instead of _SECURE_LOG.

Change-Id: I08d5d63032d83969ced02552c2ddd51c81087ae9

Source/WTF/wtf/Assertions.cpp

index 4f82429..829867f 100644 (file)
@@ -447,7 +447,7 @@ void WTFLogAlways(const char* format, ...)
 #if ENABLE(TIZEN_DLOG_SUPPORT)
 void TizenLog(TizenDlogPriority priority, bool secureLog, int line, const char* function, const char* format, ...)
 {
-#ifndef _SECURE_LOG
+#ifndef TIZEN_ENGINEER_MODE
     // Do not print logs if _SECURE_LOG is not defined by dlog package and secureLog is true.
     if (secureLog)
         return;