aboutsummaryrefslogtreecommitdiffhomepage
path: root/tddb
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2023-03-20 12:51:46 +0300
committerlevlam <levlam@telegram.org>2023-03-20 12:51:46 +0300
commit2f006bfdfee05d15a9660d21283555ba0741d5cb (patch)
tree2eacf9d55476b4132f0d27861358e8108b9ea75d /tddb
parent61a4259bfe8a9f24b77b0304d87c4768021659bd (diff)
Move log message to binlog tag.
Diffstat (limited to 'tddb')
-rw-r--r--tddb/td/db/binlog/Binlog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tddb/td/db/binlog/Binlog.cpp b/tddb/td/db/binlog/Binlog.cpp
index 624685d16..adbe97684 100644
--- a/tddb/td/db/binlog/Binlog.cpp
+++ b/tddb/td/db/binlog/Binlog.cpp
@@ -432,7 +432,7 @@ void Binlog::flush() {
LOG_IF(FATAL, fd_.need_flush_write()) << "Failed to flush binlog";
if (state_ == State::Run && Time::now() > next_buffer_flush_time_) {
- LOG(DEBUG) << "Flush write buffer";
+ VLOG(binlog) << "Flush write buffer";
buffer_writer_ = ChainBufferWriter();
buffer_reader_ = buffer_writer_.extract_reader();
if (encryption_type_ == EncryptionType::AesCtr) {