diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-08-17 20:59:05 -0600 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-08-17 20:59:05 -0600 |
commit | 0a1ec61c59d5bf89f7fca29d764b4159d6082e25 (patch) | |
tree | ffc7429a57f5d9046aa426739dc639b281f85147 | |
parent | 520a58f4defc3becc4638aec2c5e7c4ffa755fb0 (diff) | |
download | kube-0a1ec61c59d5bf89f7fca29d764b4159d6082e25.tar.gz kube-0a1ec61c59d5bf89f7fca29d764b4159d6082e25.zip |
Disabled noisy but useless debugging message
-rw-r--r-- | framework/src/domain/mime/mimetreeparser/nodehelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/domain/mime/mimetreeparser/nodehelper.cpp b/framework/src/domain/mime/mimetreeparser/nodehelper.cpp index c75ee102..b8f49386 100644 --- a/framework/src/domain/mime/mimetreeparser/nodehelper.cpp +++ b/framework/src/domain/mime/mimetreeparser/nodehelper.cpp | |||
@@ -84,7 +84,7 @@ void NodeHelper::setNodeProcessed(KMime::Content *node, bool recurse) | |||
84 | return; | 84 | return; |
85 | } | 85 | } |
86 | mProcessedNodes.append(node); | 86 | mProcessedNodes.append(node); |
87 | qCDebug(MIMETREEPARSER_LOG) << "Node processed: " << node->index().toString() << node->contentType()->as7BitString(); | 87 | // qCDebug(MIMETREEPARSER_LOG) << "Node processed: " << node->index().toString() << node->contentType()->as7BitString(); |
88 | //<< " decodedContent" << node->decodedContent(); | 88 | //<< " decodedContent" << node->decodedContent(); |
89 | if (recurse) { | 89 | if (recurse) { |
90 | const auto contents = node->contents(); | 90 | const auto contents = node->contents(); |
@@ -101,7 +101,7 @@ void NodeHelper::setNodeUnprocessed(KMime::Content *node, bool recurse) | |||
101 | } | 101 | } |
102 | mProcessedNodes.removeAll(node); | 102 | mProcessedNodes.removeAll(node); |
103 | 103 | ||
104 | qCDebug(MIMETREEPARSER_LOG) << "Node UNprocessed: " << node; | 104 | // qCDebug(MIMETREEPARSER_LOG) << "Node UNprocessed: " << node; |
105 | if (recurse) { | 105 | if (recurse) { |
106 | const auto contents = node->contents(); | 106 | const auto contents = node->contents(); |
107 | for (KMime::Content *c : contents) { | 107 | for (KMime::Content *c : contents) { |