Changeset 71045 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 18, 2018 6:30:26 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r70919 r71045 570 570 if (RT_FAILURE(rc)) 571 571 { 572 LogRel 2(("Audio: %s stream '%s' failed with %Rrc\n", DrvAudioHlpStreamCmdToStr(enmStreamCmd), pHstStream->szName, rc));572 LogRel(("Audio: %s stream '%s' failed with %Rrc\n", DrvAudioHlpStreamCmdToStr(enmStreamCmd), pHstStream->szName, rc)); 573 573 LogFunc(("[%s] %s failed with %Rrc\n", pStream->szName, DrvAudioHlpStreamCmdToStr(enmStreamCmd), rc)); 574 574 } … … 696 696 697 697 if (RT_FAILURE(rc)) 698 LogRel 2(("Audio: Creating stream '%s' failed with %Rrc\n", pStream->szName, rc));698 LogRel(("Audio: Creating stream '%s' failed with %Rrc\n", pStream->szName, rc)); 699 699 700 700 LogFlowFunc(("[%s] Returning %Rrc\n", pStream->szName, rc)); … … 853 853 854 854 if (RT_FAILURE(rc)) 855 LogRel 2(("Audio: Re-initializing stream '%s' failed with %Rrc\n", pStream->szName, rc));855 LogRel(("Audio: Re-initializing stream '%s' failed with %Rrc\n", pStream->szName, rc)); 856 856 857 857 LogFunc(("[%s] Returning %Rrc\n", pStream->szName, rc)); … … 1838 1838 else if (RT_UNLIKELY(RT_FAILURE(rc))) 1839 1839 { 1840 LogRel 2(("Audio: Capturing stream '%s' failed with %Rrc\n", pHstStream->szName, rc));1840 LogRel(("Audio: Capturing stream '%s' failed with %Rrc\n", pHstStream->szName, rc)); 1841 1841 } 1842 1842 … … 2984 2984 } 2985 2985 else 2986 LogRel 2(("Audio: Uninitializing host stream '%s' failed with %Rrc\n", pHstStream->szName, rc));2986 LogRel(("Audio: Uninitializing host stream '%s' failed with %Rrc\n", pHstStream->szName, rc)); 2987 2987 } 2988 2988 … … 3015 3015 } 3016 3016 else 3017 LogRel 2(("Audio: Uninitializing guest stream '%s' failed with %Rrc\n", pGstStream->szName, rc));3017 LogRel(("Audio: Uninitializing guest stream '%s' failed with %Rrc\n", pGstStream->szName, rc)); 3018 3018 } 3019 3019 } … … 3079 3079 LogRel2(("Audio: Creating stream '%s' in backend not supported, skipping\n", pHstStream->szName)); 3080 3080 else 3081 LogRel 2(("Audio: Creating stream '%s' in backend failed with %Rrc\n", pHstStream->szName, rc));3081 LogRel(("Audio: Creating stream '%s' in backend failed with %Rrc\n", pHstStream->szName, rc)); 3082 3082 3083 3083 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.