Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
av-store: modify log severity
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandru Gheorghe <[email protected]>
  • Loading branch information
alexggh committed Jun 6, 2023
1 parent 140ab8e commit 0dde5a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/core/av-store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,8 @@ async fn start_prune_all<Context>(
let result = prune_all(&db, &config, time_now);

if let Err(err) = pruning_result_tx.send(result).await {
gum::error!(target: LOG_TARGET, ?err, "Failed to send prune_all result",);
// This usually means that the node is closing down, log it just in case
gum::debug!(target: LOG_TARGET, ?err, "Failed to send prune_all result",);
}
}),
)?;
Expand Down

0 comments on commit 0dde5a9

Please sign in to comment.