Skip to content

Commit

Permalink
style: fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
dl239 committed Oct 24, 2023
1 parent 9d91d15 commit 48e8706
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/storage/aggregator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ bool Aggregator::DeleteData(const std::string& key, const std::optional<uint64_t
return false;
}
if (!aggr_replicator_->AppendEntry(entry)) {
PDLOG(ERROR, "Add Delete entry to binlog failed: key %s, aggr table %s", key.c_str(), aggr_table_->GetName().c_str());
PDLOG(ERROR, "Add Delete entry to binlog failed: key %s, aggr table %s",
key.c_str(), aggr_table_->GetName().c_str());
return false;
}
if (FLAGS_binlog_notify_on_put) {
Expand Down

0 comments on commit 48e8706

Please sign in to comment.