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.
This commit is contained in:
Markus Mäkelä
2019-12-20 10:57:54 +02:00
parent 2ca2f61a7d
commit 4bde824021

View File

@ -132,8 +132,7 @@ MessageQueue* MessageQueue::create(Handler* pHandler)
if (rv == 0) if (rv == 0)
{ {
// Succeeded, so apparently it was the missing support for O_DIRECT. // Succeeded, so apparently it was the missing support for O_DIRECT.
MXB_WARNING("Platform does not support O_DIRECT in conjunction with pipes, " MXB_NOTICE("Platform does not support O_DIRECT in conjunction with pipes, using without.");
"using without.");
} }
} }