From 2f006bfdfee05d15a9660d21283555ba0741d5cb Mon Sep 17 00:00:00 2001 From: levlam Date: Mon, 20 Mar 2023 12:51:46 +0300 Subject: [PATCH] Move log message to binlog tag. --- tddb/td/db/binlog/Binlog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {