Commit 9d1906da authored by Max Kellermann's avatar Max Kellermann

{event,output}/Thread: downgrade realtime scheduling errors to "info"

These messages can be confusing, but they are not critical.
parent 3d2b180c
......@@ -57,8 +57,8 @@ EventThread::Run() noexcept
try {
SetThreadRealtime();
} catch (...) {
LogError(std::current_exception(),
"RTIOThread could not get realtime scheduling, continuing anyway");
Log(LogLevel::INFO, std::current_exception(),
"RTIOThread could not get realtime scheduling, continuing anyway");
}
}
......
......@@ -406,8 +406,8 @@ AudioOutputControl::Task() noexcept
try {
SetThreadRealtime();
} catch (...) {
LogError(std::current_exception(),
"OutputThread could not get realtime scheduling, continuing anyway");
Log(LogLevel::INFO, std::current_exception(),
"OutputThread could not get realtime scheduling, continuing anyway");
}
SetThreadTimerSlackUS(100);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment