From 7bfd128a753ff7b29c90e87fe5bf5c6c8bb5bdbe Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 20 May 2024 21:56:24 +0200 Subject: [PATCH] Downgrade warning (about I/O priority) --- libs/ardour/butler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc index af3e8097cb..7fb6c6ee39 100644 --- a/libs/ardour/butler.cc +++ b/libs/ardour/butler.cc @@ -195,7 +195,7 @@ Butler::thread_work () #ifdef HAVE_IOPRIO // ioprio_set (IOPRIO_WHO_PROCESS, 0 /*calling thread*/, IOPRIO_PRIO_VALUE (IOPRIO_CLASS_RT, 4)) if (0 != syscall (SYS_ioprio_set, 1, 0, (1 << 13) | 4)) { - warning << _("Cannot set I/O Priority for disk read/write thread") << endmsg; + info << _("Cannot set I/O Priority for disk read/write thread") << endmsg; } #endif