Skip to content

Commit

Permalink
Update crates/uv-auth/src/lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Aug 23, 2024
1 parent 9b8fab1 commit 988b891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-auth/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn parse_url_from_env(url: &str) -> Option<Url> {
if url.starts_with("https://") {
Url::parse(url)
} else if url.starts_with("http://") {
debug!("Ignoring insecure URL in `UV_AUTH_URLS`: {url}");
warn!("Ignoring insecure URL in `UV_AUTH_URLS`: {url}");
return None;
} else {
let url = format!("https://{url}");
Expand Down

0 comments on commit 988b891

Please sign in to comment.