From 3fda10a99e4198b26eec5ed63698985bb5b349f5 Mon Sep 17 00:00:00 2001 From: KwangYong Choi Date: Wed, 31 Jul 2013 10:10:49 +0900 Subject: [PATCH] Use TIZEN_ENGINEER_MODE macro instead of _SECURE_LOG [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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WTF/wtf/Assertions.cpp b/Source/WTF/wtf/Assertions.cpp index 4f82429..829867f 100644 --- a/Source/WTF/wtf/Assertions.cpp +++ b/Source/WTF/wtf/Assertions.cpp @@ -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; -- 2.7.4