[Marble-commits] KDE/kdeedu/marble/src/lib

Jens-Michael Hoffmann jensmh at gmx.de
Mon Feb 15 16:09:00 CET 2010


SVN commit 1090586 by jmhoffmann:

More debug ouput.


 M  +3 -3      DownloadQueueSet.cpp  


--- trunk/KDE/kdeedu/marble/src/lib/DownloadQueueSet.cpp #1090585:1090586
@@ -103,7 +103,7 @@
 
 void DownloadQueueSet::finishJob( HttpJob * job, QByteArray data )
 {
-    mDebug() << "finishJob: " << job->destinationFileName();
+    mDebug() << "finishJob: " << job->sourceUrl() << job->destinationFileName();
 
     deactivateJob( job );
     emit jobRemoved();
@@ -132,8 +132,8 @@
     emit jobRemoved();
 
     if ( job->tryAgain() ) {
-        mDebug() << QString( "Download of %1 failed, but trying again soon" )
-            .arg( job->destinationFileName() );
+        mDebug() << QString( "Download of %1 to %2 failed, but trying again soon" )
+            .arg( job->sourceUrl().toString() ).arg( job->destinationFileName() );
         m_retryQueue.enqueue( job );
         emit jobRetry();
     }


More information about the Marble-commits mailing list