delete some debug outputs

This commit is contained in:
DenioD
2020-05-01 21:49:47 +02:00
parent f515be1aa8
commit c7d0acac71
2 changed files with 2 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ void ChatModel::clear()
void ChatModel::addMessage(ChatItem item)
{
QString key = this->generateChatItemID(item);
qDebug() << "inserting chatitem with id: " << key;
// qDebug() << "inserting chatitem with id: " << key;
this->chatItems[key] = item;
}