Remove unnecessary log

This commit is contained in:
Petr Mironychev 2024-09-15 01:15:53 +02:00
parent e3a2b5a64c
commit 938636ab48
2 changed files with 1 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"Name" : "QodeAssist",
"Version" : "0.1.2",
"Version" : "0.1.3",
"CompatVersion" : "${IDE_VERSION_COMPAT}",
"Vendor" : "Petr Mironychev",
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Petr Mironychev, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",

View File

@ -65,12 +65,6 @@ void ChangesManager::addChange(TextEditor::TextDocument *document,
documentQueue.dequeue();
}
}
logMessage(QString("ChangesManager: Updated %1 line %2: '%3'")
.arg(fileName)
.arg(lineNumber)
.arg(lineContent));
logMessage(QString("ChangesManager: Document queue size %1").arg(documentQueue.size()));
}
QString ChangesManager::getRecentChangesContext(const TextEditor::TextDocument *currentDocument) const