From 1223d3dac33a174306d5a2b25422a9c3473c7912 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 19 Oct 2011 02:07:16 +0200 Subject: [PATCH] * Use tDebug in PortfwdThread. --- src/libtomahawk/network/portfwdthread.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libtomahawk/network/portfwdthread.cpp b/src/libtomahawk/network/portfwdthread.cpp index 8e8d9925d..78af1c27c 100644 --- a/src/libtomahawk/network/portfwdthread.cpp +++ b/src/libtomahawk/network/portfwdthread.cpp @@ -84,7 +84,7 @@ PortFwdThread::work() QString pubip = QString( m_portfwd->external_ip().c_str() ); m_externalAddress = QHostAddress( pubip ); m_externalPort = tryport; - qDebug() << "External servent address detected as" << pubip << ":" << m_externalPort; + tDebug() << "External servent address detected as" << pubip << ":" << m_externalPort; qDebug() << "Max upstream " << m_portfwd->max_upstream_bps() << "bps"; qDebug() << "Max downstream" << m_portfwd->max_downstream_bps() << "bps"; break; @@ -93,10 +93,10 @@ PortFwdThread::work() } } else - qDebug() << "No UPNP Gateway device found?"; + tDebug() << "No UPNP Gateway device found?"; if ( !m_externalPort ) - qDebug() << "Could not setup fwd for port:" << m_port; + tDebug() << "Could not setup fwd for port:" << m_port; emit externalAddressDetected( m_externalAddress, m_externalPort ); }