mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-08-06 20:54:52 +00:00
turn info to debug log
This commit is contained in:
parent
7440fc6f56
commit
1d26921c33
@ -320,7 +320,7 @@ namespace platf::dxgi {
|
||||
return false;
|
||||
}
|
||||
|
||||
BOOST_LOG(info) << "ddprobe.exe ["sv << i << "] ["sv << display_name << "] returned: 0x"sv << util::hex(result).to_string_view();
|
||||
BOOST_LOG(debug) << "ddprobe.exe ["sv << i << "] ["sv << display_name << "] returned: 0x"sv << util::hex(result).to_string_view();
|
||||
|
||||
// E_ACCESSDENIED can happen at the login screen. If we get this error,
|
||||
// we know capture would have been supported, because DXGI_ERROR_UNSUPPORTED
|
||||
|
||||
@ -188,7 +188,7 @@ namespace platf {
|
||||
|
||||
if (hDesk != NULL) { CloseDesktop(hDesk); }
|
||||
if (hWinSta0 != NULL) { CloseWindowStation(hWinSta0); }
|
||||
BOOST_LOG(info) << "Thread sync with default desktop"sv;
|
||||
BOOST_LOG(debug) << "Thread sync with default desktop"sv;
|
||||
return hDesk;
|
||||
}
|
||||
|
||||
|
||||
@ -2541,7 +2541,7 @@ namespace video {
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_LOG(info) << "// Testing for available encoders, this may generate errors. You can safely ignore those errors. //"sv;
|
||||
BOOST_LOG(debug) << "// Testing for available encoders, this may generate errors. You can safely ignore those errors. //"sv;
|
||||
|
||||
// If we haven't found an encoder yet, but we want one with specific codec support, search for that now.
|
||||
if (chosen_encoder == nullptr && (active_hevc_mode >= 2 || active_av1_mode >= 2)) {
|
||||
@ -2610,9 +2610,9 @@ namespace video {
|
||||
return -1;
|
||||
}
|
||||
|
||||
BOOST_LOG(info);
|
||||
BOOST_LOG(info) << "// Ignore any errors mentioned above, they are not relevant. //"sv;
|
||||
BOOST_LOG(info);
|
||||
BOOST_LOG(debug);
|
||||
BOOST_LOG(debug) << "// Ignore any errors mentioned above, they are not relevant. //"sv;
|
||||
BOOST_LOG(debug);
|
||||
|
||||
auto &encoder = *chosen_encoder;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user