Index: /trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp	(revision 68389)
+++ /trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp	(revision 68390)
@@ -946,8 +946,10 @@
 void DrvAudioHlpStreamCfgPrint(const PPDMAUDIOSTREAMCFG pCfg)
 {
-    AssertPtrReturnVoid(pCfg);
-
-    LogFlowFunc(("uHz=%RU32, cChannels=%RU8, cBits=%RU8%s",
-                 pCfg->Props.uHz, pCfg->Props.cChannels, pCfg->Props.cBits, pCfg->Props.fSigned ? "S" : "U"));
+    if (!pCfg)
+        return;
+
+    LogFunc(("szName=%s, enmDir=%RU32 (uHz=%RU32, cBits=%RU8%s, cChannels=%RU8)\n",
+             pCfg->szName, pCfg->enmDir,
+             pCfg->Props.uHz, pCfg->Props.cBits, pCfg->Props.fSigned ? "S" : "U", pCfg->Props.cChannels));
 }
 
