Skip to content

Commit

Permalink
Lower failed to check for update log level to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jul 2, 2022
1 parent e149bae commit 6cdbf7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ async fn main() -> anyhow::Result<()> {
if env::var("NO_SELF_UPGRADE").is_err() && !opt.no_self_upgrade {
tokio::task::spawn_blocking(move || {
if let Err(e) = check_for_update(opt.debug) {
error!("failed to check for update: {}", e);
warn!("failed to check for update: {}", e);
}
})
.await?;
Expand Down

0 comments on commit 6cdbf7c

Please sign in to comment.