1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-04 10:54:35 +00:00

More debug output

This commit is contained in:
Christophe Dumez 2011-04-15 14:18:58 +00:00
parent c85cb8799e
commit 10d815c60d

View File

@ -93,6 +93,7 @@ void DNSUpdater::ipRequestFinished(QNetworkReply *reply)
if(!new_ip.isNull()) {
if(m_lastIP != new_ip) {
qDebug() << Q_FUNC_INFO << "The IP address changed, report the change to DynDNS...";
qDebug() << m_lastIP.toString() << "->" << new_ip.toString();
m_lastIP = new_ip;
updateDNSService();
}