Skip to content

Commit

Permalink
downgrade gix log level to info (helix-editor#6915)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe authored and Schuyler Mortimer committed Jul 10, 2024
1 parent afccc6f commit c2e7b31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helix-vcs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ impl DiffProviderRegistry {
.find_map(|provider| match provider.get_diff_base(file) {
Ok(res) => Some(res),
Err(err) => {
log::error!("{err:#?}");
log::error!("failed to open diff base for {}", file.display());
log::info!("{err:#?}");
log::info!("failed to open diff base for {}", file.display());
None
}
})
Expand All @@ -59,8 +59,8 @@ impl DiffProviderRegistry {
.find_map(|provider| match provider.get_current_head_name(file) {
Ok(res) => Some(res),
Err(err) => {
log::error!("{err:#?}");
log::error!("failed to obtain current head name for {}", file.display());
log::info!("{err:#?}");
log::info!("failed to obtain current head name for {}", file.display());
None
}
})
Expand Down

0 comments on commit c2e7b31

Please sign in to comment.