Index: /trunk/src/VBox/Devices/Audio/AudioMixer.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/AudioMixer.cpp	(revision 74876)
+++ /trunk/src/VBox/Devices/Audio/AudioMixer.cpp	(revision 74877)
@@ -1863,9 +1863,15 @@
                     break;
                 }
-                else if (rc != VERR_AUDIO_STREAM_NOT_READY)
+                else if (rc == VERR_AUDIO_STREAM_NOT_READY)
+                {
+                    /* Stream is not enabled, just skip. */
+                    rc = VINF_SUCCESS;
+                }
+                else
                     LogRel2(("Mixer: Writing to mixer stream '%s' (sink '%s') failed, rc=%Rrc\n",
                              pMixStream->pszName, pSink->pszName, rc));
 
-                LogFunc(("[%s] Failed writing to stream '%s': %Rrc\n", pSink->pszName, pMixStream->pszName, rc));
+                if (RT_FAILURE(rc))
+                    LogFunc(("[%s] Failed writing to stream '%s': %Rrc\n", pSink->pszName, pMixStream->pszName, rc));
             }
         }
