Improve log messages.
GitOrigin-RevId: a431f8c5bfca3edea1293d0192ac78c9aec38de2
This commit is contained in:
parent
060c01ace3
commit
1b2d42a7b6
@ -21,13 +21,13 @@ class BinlogActor : public Actor {
|
||||
void close(Promise<> promise) {
|
||||
binlog_->close().ensure();
|
||||
promise.set_value(Unit());
|
||||
LOG(INFO) << "Finished closing binlog";
|
||||
LOG(INFO) << "Finished to close binlog";
|
||||
stop();
|
||||
}
|
||||
void close_and_destroy(Promise<> promise) {
|
||||
binlog_->close_and_destroy().ensure();
|
||||
promise.set_value(Unit());
|
||||
LOG(INFO) << "Finished closing and destroying binlog";
|
||||
LOG(INFO) << "Finished to destroy binlog";
|
||||
stop();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user