Commit 0a96975a authored by Vasil Dimov's avatar Vasil Dimov

Make output from innobase_start_or_create_for_mysql() consistent

Prefix all printed lines with a timestamp and write one space between
the timestamp and "InnoDB:".
parent 715cf980
This diff is collapsed.
...@@ -1160,7 +1160,7 @@ trx_sys_file_format_max_check( ...@@ -1160,7 +1160,7 @@ trx_sys_file_format_max_check(
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, fprintf(stderr,
" InnoDB: highest supported file format is %s.\n", " InnoDB: highest supported file format is %s.\n",
trx_sys_file_format_id_to_name(DICT_TF_FORMAT_MAX)); trx_sys_file_format_id_to_name(DICT_TF_FORMAT_MAX));
if (format_id > DICT_TF_FORMAT_MAX) { if (format_id > DICT_TF_FORMAT_MAX) {
...@@ -1169,7 +1169,7 @@ trx_sys_file_format_max_check( ...@@ -1169,7 +1169,7 @@ trx_sys_file_format_max_check(
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, fprintf(stderr,
" InnoDB: %s: the system tablespace is in a file " " InnoDB: %s: the system tablespace is in a file "
"format that this version doesn't support - %s\n", "format that this version doesn't support - %s\n",
((max_format_id <= DICT_TF_FORMAT_MAX) ((max_format_id <= DICT_TF_FORMAT_MAX)
? "Error" : "Warning"), ? "Error" : "Warning"),
......
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