Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp	(revision 59840)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIDnDHandler.cpp	(revision 59841)
@@ -656,7 +656,7 @@
          */
         rc = retrieveDataInternal(dropAction, strMIMEType, m_vecData);
-        LogRel3(("DnD: Received data, rc=%Rrc\n", rc));
-
-        if (RT_SUCCESS(rc))
+        if (RT_FAILURE(rc))
+            LogRel3(("DnD: Receiving data failed: %Rrc\n", rc));
+        else
             m_fDataRetrieved = true;
     }
@@ -695,5 +695,5 @@
                                              QVector<uint8_t> &vecData)
 {
-    LogFlowFunc(("Retrieving data as '%s', dropAction=%d\n", qPrintable(strMIMEType), dropAction));
+    LogRel3(("DnD: Retrieving data from guest as '%s' (%s)\n", qPrintable(strMIMEType), qPrintable(dropAction)));
 
     int rc = VINF_SUCCESS;
