aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-10-15 10:18:54 +0200
committerEike Ziller <eike.ziller@qt.io>2018-10-15 08:52:04 +0000
commit0bf2b2501baf379c5a6f81b4ad9cf439f7536198 (patch)
tree63cbead2a154b2f6f6e719c39b8f73d845ee00af
parent25ab572ccf027cce4fb31dfce6510937bc709082 (diff)
Suppress debug log4.8
Follow up of qtcreator/0d640268fddb522eb48da439f995a6fade7d6e09 Change-Id: Ie6f218cbd2853f67692a29c33017eeb2c74c1b5c Reviewed-by: Orgad Shaneh <orgads@gmail.com>
-rw-r--r--plugins/haskell/filecache.cpp2
-rw-r--r--plugins/haskell/ghcmod.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/haskell/filecache.cpp b/plugins/haskell/filecache.cpp
index 0495a8b..55ee552 100644
--- a/plugins/haskell/filecache.cpp
+++ b/plugins/haskell/filecache.cpp
@@ -34,7 +34,7 @@
#include <QTemporaryFile>
#include <QTextDocument>
-Q_LOGGING_CATEGORY(cacheLog, "qtc.haskell.filecache")
+Q_LOGGING_CATEGORY(cacheLog, "qtc.haskell.filecache", QtWarningMsg)
using namespace Core;
using namespace TextEditor;
diff --git a/plugins/haskell/ghcmod.cpp b/plugins/haskell/ghcmod.cpp
index fbfabe7..e110230 100644
--- a/plugins/haskell/ghcmod.cpp
+++ b/plugins/haskell/ghcmod.cpp
@@ -43,8 +43,8 @@
#include <functional>
-Q_LOGGING_CATEGORY(ghcModLog, "qtc.haskell.ghcmod")
-Q_LOGGING_CATEGORY(asyncGhcModLog, "qtc.haskell.ghcmod.async")
+Q_LOGGING_CATEGORY(ghcModLog, "qtc.haskell.ghcmod", QtWarningMsg)
+Q_LOGGING_CATEGORY(asyncGhcModLog, "qtc.haskell.ghcmod.async", QtWarningMsg)
// TODO do not hardcode
const int kTimeoutMS = 10 * 1000;