From 2b4952b6686f647c5470033de2cb14577cfb41f1 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 9 Dec 2017 16:27:32 +0900 Subject: Log room creation only once --- connection.cpp | 1 - room.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/connection.cpp b/connection.cpp index 368abc8e..d4f6bf61 100644 --- a/connection.cpp +++ b/connection.cpp @@ -446,7 +446,6 @@ Room* Connection::provideRoom(const QString& id, JoinState joinState) return nullptr; } d->roomMap.insert(roomKey, room); - qCDebug(MAIN) << "Created Room" << id << ", invited:" << roomKey.second; emit newRoom(room); } if (joinState == JoinState::Invite) diff --git a/room.cpp b/room.cpp index 6e6e7e39..3beac1b2 100644 --- a/room.cpp +++ b/room.cpp @@ -146,7 +146,7 @@ Room::Room(Connection* connection, QString id, JoinState initialJoinState) // See "Accessing the Public Class" section in // https://marcmutz.wordpress.com/translated-articles/pimp-my-pimpl-%E2%80%94-reloaded/ d->q = this; - qCDebug(MAIN) << "New Room:" << id; + qCDebug(MAIN) << "New" << toCString(initialJoinState) << "Room:" << id; } Room::~Room() -- cgit v1.2.3