Improve debug print for TunnelProxy

pull/455/head
Simon Stürz 2022-02-01 13:57:47 +01:00 committed by Michael Zanetti
parent 3e94a1a4e8
commit 1e132a49ac
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ void TunnelProxyServer::onStateChanged(TunnelProxySocketServer::State state)
void TunnelProxyServer::onServerRunningChanged(bool running)
{
qCDebug(dcTunnelProxyServer()) << "The server is" << (running ? "now listening for incoming connections on " + m_serverUuid.toString() : "not running any more.");
qCDebug(dcTunnelProxyServer()).noquote() << "The server is" << (running ? "now listening for incoming connections on " + m_serverUuid.toString() : "not running any more.");
emit runningChanged(running);
}