mirror of
https://github.com/rust-unofficial/awesome-rust
synced 2024-11-10 06:14:13 +00:00
Better debug for no valid github/crates link
This commit is contained in:
parent
e2a8e63b1d
commit
50d688d165
1 changed files with 3 additions and 2 deletions
|
@ -461,6 +461,7 @@ async fn main() -> Result<(), Error> {
|
||||||
let mut star_override_level: Option<u32> = None;
|
let mut star_override_level: Option<u32> = None;
|
||||||
|
|
||||||
for (event, _range) in parser.into_offset_iter() {
|
for (event, _range) in parser.into_offset_iter() {
|
||||||
|
debug!("Event {:?}", event);
|
||||||
match event {
|
match event {
|
||||||
Event::Start(tag) => {
|
Event::Start(tag) => {
|
||||||
match tag {
|
match tag {
|
||||||
|
@ -578,10 +579,10 @@ async fn main() -> Result<(), Error> {
|
||||||
&& cargo_downloads.unwrap_or(0) < MINIMUM_CARGO_DOWNLOADS
|
&& cargo_downloads.unwrap_or(0) < MINIMUM_CARGO_DOWNLOADS
|
||||||
{
|
{
|
||||||
if github_stars.is_none() {
|
if github_stars.is_none() {
|
||||||
warn!("No valid github link");
|
warn!("No valid github link for {list_item}");
|
||||||
}
|
}
|
||||||
if cargo_downloads.is_none() {
|
if cargo_downloads.is_none() {
|
||||||
warn!("No valid crates link");
|
warn!("No valid crates link for {list_item}");
|
||||||
}
|
}
|
||||||
return Err(format_err!("Not high enough metrics ({:?} stars < {}, and {:?} cargo downloads < {}): {}", github_stars, required_stars, cargo_downloads, MINIMUM_CARGO_DOWNLOADS, list_item));
|
return Err(format_err!("Not high enough metrics ({:?} stars < {}, and {:?} cargo downloads < {}): {}", github_stars, required_stars, cargo_downloads, MINIMUM_CARGO_DOWNLOADS, list_item));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue