Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
EvolveArt committed Nov 22, 2024
1 parent 202afed commit 28fd700
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/processing/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,10 @@ pub async fn query_pragma_api(
}
}
reqwest::StatusCode::UNAUTHORIZED => Err(MonitoringError::Api("Unauthorized".to_string())),
other => {
println!("failed req url: {:?}", request_url);
return Err(MonitoringError::Api(format!(
"Unexpected response status: {}",
other
)));
}
other => Err(MonitoringError::Api(format!(
"Unexpected response status: {}",
other
))),
}
}

Expand Down

0 comments on commit 28fd700

Please sign in to comment.