From 53a941afe548be49585aadda336c0e4c05ff3ff1 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 15 Sep 2016 10:56:18 +0900 Subject: Replace an array of room deconstruction log lines with a single connection deconstruction log line --- connection.cpp | 1 + room.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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; } diff --git a/room.cpp b/room.cpp index 5b390cea..3683781b 100644 --- a/room.cpp +++ b/room.cpp @@ -111,7 +111,6 @@ Room::Room(Connection* connection, QString id) Room::~Room() { - qDebug() << "deconstructing room" << id(); delete d; } -- cgit v1.2.3