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

MDEV-13814 Extra logging when innodb_log_archive=ON

log_group_read_log_seg(): Only display the message during recovery,
not during normal operation. When the XtraDB configuration parameter
innodb_log_archive is set, this function will be called during
normal operation.
parent 8d0448d5
......@@ -2537,7 +2537,7 @@ log_group_read_log_seg(
start_lsn += len;
buf += len;
if (recv_sys->report(ut_time())) {
if (recv_recovery_is_on() && recv_sys->report(ut_time())) {
ib_logf(IB_LOG_LEVEL_INFO, "Read redo log up to LSN=" LSN_PF,
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