Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
LLiuJJ committed Aug 27, 2023
1 parent 98beac9 commit 28ec3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/log_storage_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ EStatus RocksDBSingleLogStorageImpl::Reinit() {
iter->Seek("E:");
while (iter->Valid()) {
auto st = log_db_->Delete(rocksdb::WriteOptions(), iter->key());
SPDLOG_INFO("delete log entry {}", iter->key());
SPDLOG_INFO("delete log entry {}", iter->key().ToString());
assert(st.ok());
iter->Next();
}
Expand Down

0 comments on commit 28ec3d5

Please sign in to comment.