libobs: Remove log entry for CoInitializeEx pass

Remove entry from the top of the log. Always returns S_FALSE, and that's
unlikely to change.
master
jpark37 2020-05-10 12:36:20 -07:00
parent 63cbcc5dcc
commit 0a700dbc2a
1 changed files with 1 additions and 3 deletions

View File

@ -1264,9 +1264,7 @@ bool initialize_com(void)
{
const HRESULT hr = CoInitializeEx(0, COINIT_APARTMENTTHREADED);
const bool success = SUCCEEDED(hr);
if (success)
blog(LOG_INFO, "CoInitializeEx succeeded: 0x%08X", hr);
else
if (!success)
blog(LOG_ERROR, "CoInitializeEx failed: 0x%08X", hr);
return success;
}