aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;