Binlog: more debug

GitOrigin-RevId: 8df5d8c49b702ef5bfd86819fb5904321c82049c
This commit is contained in:
Arseny Smirnov 2018-06-28 18:21:58 +03:00
parent d22fba5603
commit 158dc49438

View File

@ -37,8 +37,8 @@ void BinlogEventsProcessor::do_event(BinlogEvent &&event) {
// just skip service events
} else {
CHECK(ids_.empty() || ids_.back() < fixed_id)
<< offset_ << " " << ids_.size() << " " << ids_.back() << " " << fixed_id << " " << event.id_ << " "
<< total_events_ << " " << total_raw_events_size_;
<< offset_ << " " << ids_.size() << " " << ids_.back() << " " << fixed_id << " " << event.public_to_string()
<< " " << total_events_ << " " << total_raw_events_size_;
last_id_ = event.id_;
total_raw_events_size_ += static_cast<int64>(event.raw_event_.size());
total_events_++;