summaryrefslogtreecommitdiffstats
path: root/src/corelib/global
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@digia.com>2013-09-26 16:44:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-27 18:31:23 +0200
commitec716cc5bf267e6895f673f4be76e3422cf86d3d (patch)
tree89ddba128c1cfdb583f066baca8a74654de7244f /src/corelib/global
parenta94e9329450be060256e5040c095c6175d5ec19e (diff)
Android: Handle new QtTraceMsg in message handler
Change-Id: I3eb6fa42044ff4bdd0219925abf9d18cad60de7c Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/corelib/global')
-rw-r--r--src/corelib/global/qlogging.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/global/qlogging.cpp b/src/corelib/global/qlogging.cpp
index c0709ce258..694935b326 100644
--- a/src/corelib/global/qlogging.cpp
+++ b/src/corelib/global/qlogging.cpp
@@ -869,6 +869,7 @@ static void android_default_message_handler(QtMsgType type,
{
android_LogPriority priority;
switch (type) {
+ case QtTraceMsg:
case QtDebugMsg: priority = ANDROID_LOG_DEBUG; break;
case QtWarningMsg: priority = ANDROID_LOG_WARN; break;
case QtCriticalMsg: priority = ANDROID_LOG_ERROR; break;