Commit bfcc8ae8 authored by Jimmy Yang's avatar Jimmy Yang

Add a space indentation to InnoDB buffer pool size and log sequence

number boot up message.
parent 938ce0ef
......@@ -1337,7 +1337,7 @@ innobase_start_or_create_for_mysql(void)
/* Print time to initialize the buffer pool */
ut_print_timestamp(stderr);
fprintf(stderr,
" InnoDB: Initializing buffer pool, size =");
" InnoDB: Initializing buffer pool, size =");
if (srv_buf_pool_size >= 1024 * 1024 * 1024) {
fprintf(stderr,
......@@ -1353,7 +1353,7 @@ innobase_start_or_create_for_mysql(void)
ut_print_timestamp(stderr);
fprintf(stderr,
" InnoDB: Completed initialization of buffer pool\n");
" InnoDB: Completed initialization of buffer pool\n");
if (err != DB_SUCCESS) {
fprintf(stderr,
......@@ -1871,7 +1871,7 @@ innobase_start_or_create_for_mysql(void)
if (srv_print_verbose_log) {
ut_print_timestamp(stderr);
fprintf(stderr,
" InnoDB %s started; "
" InnoDB: %s started; "
"log sequence number %llu\n",
INNODB_VERSION_STR, srv_start_lsn);
}
......
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