summaryrefslogtreecommitdiff
path: root/src/qmlcompiler/qqmljscompiler.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-11-24 17:58:28 +0100
committerUlf Hermann <ulf.hermann@qt.io>2021-11-26 11:59:38 +0100
commit968578a217966e3bd7ddf16f18d61a626b994fd1 (patch)
tree2ff824dde30eb179ead18692c9c9bfe4bfa283c2 /src/qmlcompiler/qqmljscompiler.cpp
parent6d5c2cecdd9694f6ecf9679ea2d46c04b51ca771 (diff)
downloadqtdeclarative-968578a217966e3bd7ddf16f18d61a626b994fd1.tar.gz
Fix logging categories in QtQml and friends
Make sure they all start with "qt.qml" and move them into the Qt namespace. Remove dead ones. Change-Id: I3d7a3c08b797c29df6737b2c4a5cacb26cd82956 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qmlcompiler/qqmljscompiler.cpp')
-rw-r--r--src/qmlcompiler/qqmljscompiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmlcompiler/qqmljscompiler.cpp b/src/qmlcompiler/qqmljscompiler.cpp
index e9ccce9662..73faaaa6fc 100644
--- a/src/qmlcompiler/qqmljscompiler.cpp
+++ b/src/qmlcompiler/qqmljscompiler.cpp
@@ -38,10 +38,10 @@
#include <limits>
-Q_LOGGING_CATEGORY(lcAotCompiler, "qml.compiler.aot", QtWarningMsg);
-
QT_BEGIN_NAMESPACE
+Q_LOGGING_CATEGORY(lcAotCompiler, "qt.qml.compiler.aot", QtWarningMsg);
+
static const int FileScopeCodeIndex = -1;
static QSet<QString> getIllegalNames()