diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-15 10:56:18 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-15 10:56:18 +0900 |
commit | 53a941afe548be49585aadda336c0e4c05ff3ff1 (patch) | |
tree | a9e4ae1b48b1dd111d857eda723882c5452f62d6 | |
parent | c8a34813a551752bf647a0c91a6ee37c95e50251 (diff) | |
download | libquotient-53a941afe548be49585aadda336c0e4c05ff3ff1.tar.gz libquotient-53a941afe548be49585aadda336c0e4c05ff3ff1.zip |
Replace an array of room deconstruction log lines with a single connection deconstruction log line
-rw-r--r-- | connection.cpp | 1 | ||||
-rw-r--r-- | room.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/connection.cpp b/connection.cpp index 1bd8e292..aebe7631 100644 --- a/connection.cpp +++ b/connection.cpp @@ -78,6 +78,7 @@ Connection::Connection() Connection::~Connection() { + qDebug() << "deconstructing connection object for" << d->userId; delete d; } @@ -111,7 +111,6 @@ Room::Room(Connection* connection, QString id) Room::~Room() { - qDebug() << "deconstructing room" << id(); delete d; } |