diff --git a/src/chatmodel.cpp b/src/chatmodel.cpp index 24523a1..89a7dde 100644 --- a/src/chatmodel.cpp +++ b/src/chatmodel.cpp @@ -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; } diff --git a/src/controller.cpp b/src/controller.cpp index 36ac2c8..b0453d2 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -966,7 +966,7 @@ void Controller::refreshTransactions() { cid, // we have to set the cid here, its included in the headermemo txid ); - qDebug()<< "Message CID: " << cid; + // qDebug()<< "Message CID: " << cid; chatModel->addMessage(item); } @@ -1006,7 +1006,6 @@ void Controller::refreshChat(QListWidget *listWidget) void Controller::refreshContacts(QListWidget *listWidget) { - qDebug() << "Called Controller::refreshContacts(QListWidget *listWidget)"; contactModel->renderContactList(listWidget); }