Remove redundant qCDebug in QTextMarkdownImporter::cbText()

The same information is written out a few lines above. Amends
ff153d9874f728c9ec3ab40b87f55ccf0239e538

Change-Id: I168051250b79549f1ea4998e1fe00b8c63602432
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
This commit is contained in:
Shawn Rutledge 2022-05-20 07:41:13 +02:00
parent 5d0935d45f
commit 37f277f3d7

View File

@ -539,8 +539,6 @@ int QTextMarkdownImporter::cbText(int textType, const char *text, unsigned size)
QString::number(bfmt.intProperty(QTextFormat::BlockQuoteLevel));
if (bfmt.hasProperty(QTextFormat::BlockCodeLanguage))
debugInfo += "in a code block"_L1;
if (m_cursor->currentList())
debugInfo += "in a list"_L1;
qCDebug(lcMD) << textType << "in block" << m_blockType << s << qPrintable(debugInfo)
<< "bindent" << bfmt.indent() << "tindent" << bfmt.textIndent()
<< "margins" << bfmt.leftMargin() << bfmt.topMargin() << bfmt.bottomMargin() << bfmt.rightMargin();