From 10d815c60dfaf755f384c6f9c66589ca06340389 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 15 Apr 2011 14:18:58 +0000 Subject: [PATCH] More debug output --- src/dnsupdater.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dnsupdater.cpp b/src/dnsupdater.cpp index 9517a3b19..d14ad96f5 100644 --- a/src/dnsupdater.cpp +++ b/src/dnsupdater.cpp @@ -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(); }