Remove binlog events data from the log.

GitOrigin-RevId: a3d8058e62d691671a10f8625db0afdb143fb3a8
This commit is contained in:
levlam 2018-06-25 13:37:14 +03:00
parent ccc44e9b43
commit 62512c4db0

View File

@ -485,7 +485,7 @@ Status Binlog::load_binlog(const Callback &callback, const Callback &debug_callb
auto offset = processor_->offset();
processor_->for_each([&](BinlogEvent &event) {
VLOG(binlog) << "Replay binlog event: " << event;
VLOG(binlog) << "Replay binlog event: " << event.public_to_string();
if (callback) {
callback(event);
}