turn info to debug log

This commit is contained in:
pigeatgarlic 2025-02-18 09:36:32 +00:00
parent 7440fc6f56
commit 1d26921c33
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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;
}

View File

@ -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;