Rework audio thread restart.

This commit is contained in:
Robin E. R. Davies
2025-07-23 15:06:06 -04:00
parent d5ec594957
commit 090ffc9a9e
5 changed files with 176 additions and 76 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ static void SetPriority(int realtimePriority, const char *priorityName)
int result = sched_setscheduler(0, SCHED_RR, &param);
if (result == 0)
{
Lv2Log::debug("Service thread priority successfully boosted.");
Lv2Log::debug(SS("Service thread priority successfully boosted. (" << priorityName << ")"));
return;
}
else