summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2015-07-28 15:04:02 +0200
committerNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2015-07-29 08:53:15 +0000
commit92ff2678453ee88dade133f0568ae6ace1fa4e57 (patch)
treed2e43cbfbadacd23769ab4ee5c1b76bca53401f9
parentb554fe47267b5985fb3400e07f1cd4594bc1d4b6 (diff)
downloadqt-creator-92ff2678453ee88dade133f0568ae6ace1fa4e57.tar.gz
Clang: Remove logging category qtc.clangcodemodel.clangeditordocumentprocessor
It did not provide much value. Change-Id: If6d3c65102eef1bba72c8da4870ddb11a47d4dba Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-rw-r--r--src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp b/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp
index 7cb736f08e..f8a4191513 100644
--- a/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp
+++ b/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp
@@ -44,10 +44,6 @@
#include <utils/qtcassert.h>
#include <utils/QtConcurrentTools>
-#include <QLoggingCategory>
-
-static Q_LOGGING_CATEGORY(log, "qtc.clangcodemodel.clangeditordocumentprocessor")
-
namespace {
typedef CPlusPlus::Document::DiagnosticMessage CppToolsDiagnostic;
@@ -59,8 +55,6 @@ QList<CppToolsDiagnostic> toCppToolsDiagnostics(
QList<CppToolsDiagnostic> converted;
foreach (const ClangCodeModel::Diagnostic &d, diagnostics) {
- qCDebug(log) << "diagnostic" << d.severityAsString() << d.location() << d.spelling();
-
if (d.location().fileName() != filePath)
continue;