Commit c50b7bee authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-21615 InnoDB: innodb_page_size=x requires... should be logged as error

innobase_init(): On every path to refused startup, log the reason
to refuse startup as an error, instead of a note.
parent d72eebaa
......@@ -3781,7 +3781,7 @@ innobase_init(
pages, even for larger pages */
if (UNIV_PAGE_SIZE > UNIV_PAGE_SIZE_DEF
&& innobase_buffer_pool_size < (24 * 1024 * 1024)) {
ib::info() << "innodb_page_size="
ib::error() << "innodb_page_size="
<< UNIV_PAGE_SIZE << " requires "
<< "innodb_buffer_pool_size > 24M current "
<< innobase_buffer_pool_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment