Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated log levels
  • Loading branch information
arkpar committed Jan 23, 2023
commit cf3713edf60073d3c3601cedce3cda63e887be51
4 changes: 2 additions & 2 deletions src/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ impl HashColumn {
log: &mut LogWriter,
) -> Result<PlanOutcome> {
if Self::contains_partial_key_with_address(key, address, &tables.index, log)? {
log::info!(target: "parity-db", "{}: Skipped reindex entry {} when reindexing", tables.index.id, hex(key));
log::trace!(target: "parity-db", "{}: Skipped reindex entry {} when reindexing", tables.index.id, hex(key));
return Ok(PlanOutcome::Skipped)
}
let mut outcome = PlanOutcome::Written;
Expand Down Expand Up @@ -593,7 +593,7 @@ impl HashColumn {
while let PlanOutcome::NeedReindex =
tables.index.write_insert_plan(key, address, None, log)?
{
log::info!(target: "parity-db", "{}: Index chunk full {}", tables.index.id, hex(key));
log::debug!(target: "parity-db", "{}: Index chunk full {}", tables.index.id, hex(key));
(tables, reindex) = Self::trigger_reindex(tables, reindex, self.path.as_path());
outcome = PlanOutcome::NeedReindex;
}
Expand Down