WASAPI: Change some errors messages to warnings

There shouldn't be errors if the actual source has successfully been
created, just warnings.
This commit is contained in:
jp9000
2014-03-07 13:04:38 -07:00
parent fd579fe7f4
commit 2c3a3f4e65
2 changed files with 10 additions and 8 deletions

View File

@@ -89,7 +89,7 @@ void GetWASAPIAudioDevices(vector<AudioDeviceInfo> &devices, bool input)
GetWASAPIAudioDevices_(devices, input);
} catch (HRError error) {
blog(LOG_ERROR, "[GetWASAPIAudioDevices] %s: %lX",
blog(LOG_WARNING, "[GetWASAPIAudioDevices] %s: %lX",
error.str, error.hr);
}
}