diff --git a/src/kvstore/raftex/RaftPart.cpp b/src/kvstore/raftex/RaftPart.cpp index d50818eaa4b..4963c62fa83 100644 --- a/src/kvstore/raftex/RaftPart.cpp +++ b/src/kvstore/raftex/RaftPart.cpp @@ -771,7 +771,7 @@ folly::Future RaftPart::appendLogAsync(ClusterID source if (bufferOverFlow_) { VLOG_EVERY_N(2, 1000) << idStr_ << "The appendLog buffer is full. Please slow down the log appending rate." - << "replicatingLogs_ :" << std::boolaplha << replicatingLogs_; + << "replicatingLogs_ :" << std::boolalpha << replicatingLogs_; return nebula::cpp2::ErrorCode::E_RAFT_BUFFER_OVERFLOW; } { @@ -782,7 +782,7 @@ folly::Future RaftPart::appendLogAsync(ClusterID source if (logs_.size() >= FLAGS_max_batch_size) { // Buffer is full VLOG(2) << idStr_ << "The appendLog buffer is full. Please slow down the log appending rate." - << "replicatingLogs_ :" << std::boolaplha << replicatingLogs_; + << "replicatingLogs_ :" << std::boolalpha << replicatingLogs_; bufferOverFlow_ = true; return nebula::cpp2::ErrorCode::E_RAFT_BUFFER_OVERFLOW; }