Skip to content

Commit

Permalink
Print auto log flush setting during log mgr init (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
greensky00 authored Oct 31, 2024
1 parent f80e277 commit 8ead842
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/log_mgr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,14 @@ void LogMgr::logMgrSettings() {
"initialized log manager, memtable flush buffer %zu, "
"direct-IO %s, custom hash length function %s, "
"sync multi-threaded log flush %s, "
"skip manifest sync %s",
"skip manifest sync %s, "
"auto log flush %s",
g_conf->memTableFlushBufferSize,
get_on_off_str(opt.dbConfig->directIoOpt.enabled),
get_on_off_str((bool)opt.dbConfig->customLenForHash),
get_on_off_str(opt.dbConfig->serializeMultiThreadedLogFlush),
get_on_off_str(opt.dbConfig->skipManifestSync) );
get_on_off_str(opt.dbConfig->skipManifestSync),
get_on_off_str(opt.dbConfig->autoLogFlush) );
}

Status LogMgr::rollback(uint64_t seq_upto) {
Expand Down

0 comments on commit 8ead842

Please sign in to comment.