Index: /trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp	(revision 92437)
+++ /trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp	(revision 92438)
@@ -516,5 +516,5 @@
 
     pTst->t.TestTone.u.Rec.cbToWrite = PDMAudioPropsMilliToBytes(pProps,
-                                                                      pTst->t.TestTone.Parms.msDuration);
+                                                                 pTst->t.TestTone.Parms.msDuration);
 
     /* We inject a pre + post beacon before + after the actual test tone.
@@ -525,5 +525,5 @@
     if (RT_SUCCESS(rc))
     {
-        LogRel(("ValKit: Registering guest recording test #%RU32 (%RU32ms, %RU64 bytes, host test #%RU32)\n",
+        LogRel(("ValKit: Registering guest recording test #%RU32 (%RU32ms, %RU64 bytes) as test #%RU32\n",
                 pThis->cTestsRec, pTst->t.TestTone.Parms.msDuration, pTst->t.TestTone.u.Rec.cbToWrite,
                 pToneParms->Hdr.idxTest));
@@ -531,6 +531,6 @@
         const uint32_t cbBeacon = AudioTestBeaconGetSize(&pTst->t.TestTone.Beacon);
         if (cbBeacon)
-            LogRel2(("ValKit: Guest recording test #%RU32 includes 2 x %RU32 bytes of pre/post beacons\n",
-                     pThis->cTestsRec, cbBeacon));
+            LogRel2(("ValKit: Test #%RU32: Uses 2 x %RU32 bytes of pre/post beacons\n",
+                     pToneParms->Hdr.idxTest, cbBeacon));
 
         RTListAppend(&pThis->lstTestsRec, &pTst->Node);
@@ -571,5 +571,5 @@
 
     pTst->t.TestTone.u.Play.cbToRead  = PDMAudioPropsMilliToBytes(pProps,
-                                                                       pTst->t.TestTone.Parms.msDuration);
+                                                                  pTst->t.TestTone.Parms.msDuration);
 
     /* We play a pre + post beacon before + after the actual test tone.
@@ -580,5 +580,5 @@
     if (RT_SUCCESS(rc))
     {
-        LogRel(("ValKit: Registering guest playback test #%RU32 (%RU32ms, %RU64 bytes, host test #%RU32)\n",
+        LogRel(("ValKit: Registering guest playback test #%RU32 (%RU32ms, %RU64 bytes) as test #%RU32\n",
                 pThis->cTestsPlay, pTst->t.TestTone.Parms.msDuration, pTst->t.TestTone.u.Play.cbToRead,
                 pToneParms->Hdr.idxTest));
@@ -586,6 +586,6 @@
         const uint32_t cbBeacon = AudioTestBeaconGetSize(&pTst->t.TestTone.Beacon);
         if (cbBeacon)
-            LogRel2(("ValKit: Guest playback test #%RU32 includes 2 x %RU32 bytes of pre/post beacons\n",
-                     pThis->cTestsPlay, cbBeacon));
+            LogRel2(("ValKit: Test #%RU32: Uses x %RU32 bytes of pre/post beacons\n",
+                     pToneParms->Hdr.idxTest, cbBeacon));
 
         RTListAppend(&pThis->lstTestsPlay, &pTst->Node);
@@ -1058,5 +1058,10 @@
     }
 
-    LogRel4(("Playback audio data (%RU32 bytes):\n"
+    LogRel3(("ValKit: Test #%RU32: Playing stream '%s' (%RU32 bytes / %RU64ms) -- state is '%s' ...\n",
+             pTst->idxTest, pStream->pStream->Cfg.szName,
+             cbBuf, PDMAudioPropsBytesToMilli(&pStream->pStream->Cfg.Props, cbBuf),
+             AudioTestStateToStr(pTst->enmState)));
+
+    LogRel4(("ValKit: Playback audio data (%RU32 bytes):\n"
              "%.*Rhxd\n", cbBuf, cbBuf, pvBuf));
 
@@ -1088,9 +1093,4 @@
         }
     }
-
-    LogRel3(("ValKit: Test #%RU32: Playing stream '%s' (%RU32 bytes / %RU64ms) -- state is '%s' ...\n",
-             pTst->idxTest, pStream->pStream->Cfg.szName,
-             cbBuf, PDMAudioPropsBytesToMilli(&pStream->pStream->Cfg.Props, cbBuf),
-             AudioTestStateToStr(pTst->enmState)));
 
     uint32_t cbWritten = 0;
@@ -1284,5 +1284,5 @@
     }
 
-    LogRel4(("Capture audio data (%RU32 bytes):\n"
+    LogRel4(("ValKit: Capture audio data (%RU32 bytes):\n"
              "%.*Rhxd\n", cbBuf, cbBuf, pvBuf));
 
