diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2015-05-22 08:24:59 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2015-05-30 20:45:17 +0300 |
commit | 59815a268b37a9859c31d6add4546f4c6a7ef6aa (patch) | |
tree | cbcc99a5fdbda671b5b16bac81b8e78a421f47cb /storage/xtradb/buf/buf0dump.cc | |
parent | 84eaf0911f311acba797c265ef7508ab6c108b35 (diff) | |
download | mariadb-git-59815a268b37a9859c31d6add4546f4c6a7ef6aa.tar.gz |
MDEV-7484: Log Time not consistent with InnoDB errors nor with MySQL error log time format
Diffstat (limited to 'storage/xtradb/buf/buf0dump.cc')
-rw-r--r-- | storage/xtradb/buf/buf0dump.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/storage/xtradb/buf/buf0dump.cc b/storage/xtradb/buf/buf0dump.cc index 090e8cac63b..16708d3b5c5 100644 --- a/storage/xtradb/buf/buf0dump.cc +++ b/storage/xtradb/buf/buf0dump.cc @@ -123,11 +123,7 @@ buf_dump_status( sizeof(export_vars.innodb_buffer_pool_dump_status), fmt, ap); - if (severity == STATUS_NOTICE || severity == STATUS_ERR) { - ut_print_timestamp(stderr); - fprintf(stderr, " InnoDB: %s\n", - export_vars.innodb_buffer_pool_dump_status); - } + ib_logf((ib_log_level_t) severity, export_vars.innodb_buffer_pool_dump_status); va_end(ap); } |