From ff0094366d879dc02ebbd16a340a028ad03db5af Mon Sep 17 00:00:00 2001 From: KwangYong Choi Date: Mon, 15 Jul 2013 10:12:01 +0900 Subject: [PATCH] Change log level: info -> debug [Title] Change log level: info -> debug [Issue#] N/A [Problem] N/A [Cause] N/A [Solution] Change log level: info -> debug Reduce logs for product. Change-Id: Ia5d682371c1c74c40dbc497dab381e5372405abd --- 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 3a69367..4f82429 100644 --- a/Source/WTF/wtf/Assertions.cpp +++ b/Source/WTF/wtf/Assertions.cpp @@ -465,7 +465,7 @@ void TizenLog(TizenDlogPriority priority, bool secureLog, int line, const char* switch (priority) { case TIZEN_DLOG_PRIORITY_INFO: snprintf(logFormat, DLOG_MAX_LENGTH, "%s(%d) > %s%s", function, line, secureLogTag, format); - LOG_VA(LOG_INFO, DLOG_WEBKIT_TAG, logFormat, args); + LOG_VA(LOG_DEBUG, DLOG_WEBKIT_TAG, logFormat, args); break; case TIZEN_DLOG_PRIORITY_ERROR: snprintf(logFormat, DLOG_MAX_LENGTH, "%s(%d) > %sERROR: %s", function, line, secureLogTag, format); -- 2.7.4