Index: /trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
===================================================================
--- /trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py	(revision 71645)
+++ /trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py	(revision 71646)
@@ -2065,4 +2065,5 @@
         # First batch: One session per guest process.
         #
+        reporter.log('One session per guest process ...');
         for (i, aTest) in enumerate(aaTests):
             curTest = aTest[0]; # tdTestExec, use an index, later.
@@ -2082,7 +2083,10 @@
         # No sessions left?
         if fRc is True:
-            cSessions = len(self.oTstDrv.oVBoxMgr.getArray(oSession.o.console.guest, 'sessions'));
+            aSessions = self.oTstDrv.oVBoxMgr.getArray(oSession.o.console.guest, 'sessions');
+            cSessions   = len(aSessions);
             if cSessions is not 0:
-                reporter.error('Found %d stale session(s), expected 0' % (cSessions,));
+                reporter.error('Found %d stale session(s), expected 0:' % (cSessions,));
+                for (i, aSession) in enumerate(aSessions):
+                    reporter.log('\tStale session #%d ("%s")' % (aSession.id, aSession.name));
                 fRc = False;
 
