summaryrefslogtreecommitdiffstats
path: root/src/plugins/sceneparsers/assimp/assimpimporter.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-03-31 11:43:51 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-03-31 13:23:27 +0000
commitacde192b771f1baa2f01cac30c18ac9ce7054b28 (patch)
tree6e22f03baad72a204bae9ffb787c9215c928a62d /src/plugins/sceneparsers/assimp/assimpimporter.cpp
parentc70a1d339e17c7fa12ee88d40b1455f07b254405 (diff)
Don't explicitly disable the Qt3D category logging
Category logging is off by default, so explicitly turning it off will just make it harder to turn it on in the application. qt.*.debug has special behavior in the sense that defaults to off. Other categories, like Qt3D.*.debug default to true. Therefore the only correct way in Qt 3D is to always specify warning-and-up as the default enabled severity. Change-Id: I91daf48e049b7a9fcfac9720982138b178ee4804 Reviewed-by: Antti Määttä <antti.maatta@qt.io>
Diffstat (limited to 'src/plugins/sceneparsers/assimp/assimpimporter.cpp')
-rw-r--r--src/plugins/sceneparsers/assimp/assimpimporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/sceneparsers/assimp/assimpimporter.cpp b/src/plugins/sceneparsers/assimp/assimpimporter.cpp
index 87a6649f1..40db838b7 100644
--- a/src/plugins/sceneparsers/assimp/assimpimporter.cpp
+++ b/src/plugins/sceneparsers/assimp/assimpimporter.cpp
@@ -83,7 +83,7 @@ namespace Qt3DRender {
It should be noted that Assimp aiString is explicitly defined to be UTF-8.
*/
-Q_LOGGING_CATEGORY(AssimpImporterLog, "Qt3D.AssimpImporter")
+Q_LOGGING_CATEGORY(AssimpImporterLog, "Qt3D.AssimpImporter", QtWarningMsg)
namespace {