From: KwangYong Choi Date: Mon, 15 Jul 2013 01:12:01 +0000 (+0900) Subject: Change log level: info -> debug X-Git-Tag: submit/tizen_2.2/20130716.180414~6^2 X-Git-Url: http://review.tizen.org/git/?p=framework%2Fweb%2Fwebkit-efl.git;a=commitdiff_plain;h=ff0094366d879dc02ebbd16a340a028ad03db5af 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 --- 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);