Skip to content

Commit

Permalink
Improve log message about partition uuids
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiklohmann committed Sep 18, 2020
1 parent 9d3c0a0 commit d062d16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libvast/src/system/index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ pack(flatbuffers::FlatBufferBuilder& builder, const index_state& state) {
auto meta_idx = pack(builder, state.meta_idx);
if (!meta_idx)
return meta_idx.error();
VAST_VERBOSE(state.self, "persisting", state.persisted_partitions.size(),
" definitely persisted and ", state.unpersisted.size(),
" maybe persisted partitions uuids");
VAST_DEBUG(state.self, "persists", state.persisted_partitions.size(),
"uuids of definitely persisted and", state.unpersisted.size(),
"uuids of maybe persisted partitions");
std::vector<flatbuffers::Offset<fbs::UUID>> partition_offsets;
for (auto uuid : state.persisted_partitions) {
if (auto uuid_fb = pack(builder, uuid))
Expand Down

0 comments on commit d062d16

Please sign in to comment.