{event,output}/Thread: downgrade realtime scheduling errors to "info"
These messages can be confusing, but they are not critical.
This commit is contained in:
@@ -57,7 +57,7 @@ EventThread::Run() noexcept
|
|||||||
try {
|
try {
|
||||||
SetThreadRealtime();
|
SetThreadRealtime();
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
LogError(std::current_exception(),
|
Log(LogLevel::INFO, std::current_exception(),
|
||||||
"RTIOThread could not get realtime scheduling, continuing anyway");
|
"RTIOThread could not get realtime scheduling, continuing anyway");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -406,7 +406,7 @@ AudioOutputControl::Task() noexcept
|
|||||||
try {
|
try {
|
||||||
SetThreadRealtime();
|
SetThreadRealtime();
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
LogError(std::current_exception(),
|
Log(LogLevel::INFO, std::current_exception(),
|
||||||
"OutputThread could not get realtime scheduling, continuing anyway");
|
"OutputThread could not get realtime scheduling, continuing anyway");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user