From 4bde8240218dfc01c700743251ff84694f5c30cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 20 Dec 2019 10:57:54 +0200 Subject: [PATCH] MXS-2815: Downgrade O_DIRECT from warning to notice There's no real action the user can take which is why it shouldn't be a warning. --- maxutils/maxbase/src/messagequeue.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/maxutils/maxbase/src/messagequeue.cc b/maxutils/maxbase/src/messagequeue.cc index 456a88690..9df14696a 100644 --- a/maxutils/maxbase/src/messagequeue.cc +++ b/maxutils/maxbase/src/messagequeue.cc @@ -132,8 +132,7 @@ MessageQueue* MessageQueue::create(Handler* pHandler) if (rv == 0) { // Succeeded, so apparently it was the missing support for O_DIRECT. - MXB_WARNING("Platform does not support O_DIRECT in conjunction with pipes, " - "using without."); + MXB_NOTICE("Platform does not support O_DIRECT in conjunction with pipes, using without."); } }