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

InnoDB: Correct an error message

Display the log record type in hexadecimal, not binary.
parent 3f4274f8
...@@ -1531,7 +1531,8 @@ recv_parse_or_apply_log_rec_body( ...@@ -1531,7 +1531,8 @@ recv_parse_or_apply_log_rec_body(
break; break;
default: default:
ptr = NULL; ptr = NULL;
ib::error() << "Incorrect log record type:" << type; ib::error() << "Incorrect log record type "
<< ib::hex(unsigned(type));
recv_sys->found_corrupt_log = true; recv_sys->found_corrupt_log = true;
} }
......
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