Changeset 68868 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 26, 2017 8:28:39 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r68867 r68868 2304 2304 pThis->Out.fEnabled = RT_BOOL(u64Temp); 2305 2305 2306 LogRel (("Audio: Initial status for driver '%s': Input is %s, output is %s\n",2307 pThis->szName, pThis->In.fEnabled ? "enabled" : "disabled", pThis->Out.fEnabled ? "enabled" : "disabled"));2306 LogRel2(("Audio: Initial status for driver '%s': Input is %s, output is %s\n", 2307 pThis->szName, pThis->In.fEnabled ? "enabled" : "disabled", pThis->Out.fEnabled ? "enabled" : "disabled")); 2308 2308 2309 2309 /* … … 2685 2685 fEnable ? PDMAUDIOSTREAMCMD_ENABLE : PDMAUDIOSTREAMCMD_DISABLE); 2686 2686 if (RT_FAILURE(rc2)) 2687 LogRel 2(("Audio: Failed to %s %s stream '%s', rc=%Rrc\n",2688 2687 LogRel(("Audio: Failed to %s %s stream '%s', rc=%Rrc\n", 2688 fEnable ? "enable" : "disable", enmDir == PDMAUDIODIR_IN ? "input" : "output", pStream->szName, rc2)); 2689 2689 2690 2690 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.