X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcore.cpp;h=21e7c16f9f1b2926592ea6dc2ffac17e8cde193a;hp=8a1c777135038ffae1300fd891745fd78ecfa419;hb=444e91f948b435e652205c4d0f1148906e9e86dc;hpb=9a36f8e55bfa485467e093fba669841fdfacda2f diff --git a/src/core/core.cpp b/src/core/core.cpp index 8a1c7771..21e7c16f 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -468,7 +468,7 @@ void Core::processClientMessage(QTcpSocket *socket, const QVariantMap &msg) { } reply["MsgType"] = "ClientLoginAck"; SignalProxy::writeDataToDevice(socket, reply); - qDebug() << qPrintable(tr("Client %1 initialized and authentificated successfully as \"%2\".").arg(socket->peerAddress().toString(), msg["User"].toString())); + qDebug() << qPrintable(tr("Client %1 initialized and authentificated successfully as \"%2\" (UserId: %3).").arg(socket->peerAddress().toString(), msg["User"].toString()).arg(uid.toInt())); setupClientSession(socket, uid); } }