Index: /trunk/src/VBox/Main/src-client/VideoRec.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/VideoRec.cpp	(revision 68428)
+++ /trunk/src/VBox/Main/src-client/VideoRec.cpp	(revision 68429)
@@ -874,6 +874,6 @@
         }
 
-        LogRel(("VideoRec: Recording screen #%u with %ux%u @ %u kbps, %u fps to '%s'\n",
-                uScreen, uWidth, uHeight, uRate, uFPS, pszFile));
+        LogRel(("VideoRec: Recording screen #%u with %ux%u @ %u kbps, %u FPS\n",
+                uScreen, uWidth, uHeight, uRate, uFPS));
     }
 
@@ -892,4 +892,22 @@
     }
 #endif
+
+    if (   fHasVideoTrack
+#ifdef VBOX_WITH_AUDIO_VIDEOREC
+        || fHasAudioTrack)
+#endif
+    {
+        char szWhat[32] = { 0 };
+        if (fHasVideoTrack)
+            RTStrCat(szWhat, sizeof(szWhat), "video");
+        if (fHasAudioTrack)
+        {
+            if (fHasVideoTrack)
+                RTStrCat(szWhat, sizeof(szWhat), " + ");
+            RTStrCat(szWhat, sizeof(szWhat), "audio");
+        }
+
+        LogRel(("Recording %s to '%s'\n", szWhat, pszFile));
+    }
 
 #ifdef VBOX_WITH_LIBVPX
