Skip to content

Commit

Permalink
Dial down log level for "Error getting doc hashes"
Browse files Browse the repository at this point in the history
it happens during shutdown if the tasks stop in slightly different order
  • Loading branch information
rklaehn committed May 13, 2024
1 parent 2329df4 commit 5e2f512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iroh/src/node/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ where
let doc_hashes = match ds.content_hashes().await {
Ok(hashes) => hashes,
Err(err) => {
tracing::error!("Error getting doc hashes: {}", err);
tracing::warn!("Error getting doc hashes: {}", err);
continue 'outer;
}
};
Expand Down

0 comments on commit 5e2f512

Please sign in to comment.