mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-06 06:27:40 +03:00
Improve error logging
This commit is contained in:
parent
d5b1c3a5bb
commit
8c04365049
3 changed files with 12 additions and 110 deletions
10
src/utils.rs
10
src/utils.rs
|
@ -9,7 +9,7 @@ use serde_json::{from_str, Value};
|
|||
use std::collections::HashMap;
|
||||
use time::{Duration, OffsetDateTime};
|
||||
use url::Url;
|
||||
use cached::proc_macro::cached;
|
||||
// use cached::proc_macro::cached;
|
||||
|
||||
//
|
||||
// STRUCTS
|
||||
|
@ -461,8 +461,8 @@ pub async fn request(path: String) -> Result<Value, String> {
|
|||
// Parse the response from Reddit as JSON
|
||||
match from_str(&response.into_string().unwrap_or_default()) {
|
||||
Ok(json) => Ok(json),
|
||||
Err(_) => {
|
||||
dbg!(format!("{} - Failed to parse page JSON data", url));
|
||||
Err(e) => {
|
||||
println!("{} - Failed to parse page JSON data: {}", url, e);
|
||||
Err("Failed to parse page JSON data".to_string())
|
||||
}
|
||||
}
|
||||
|
@ -474,8 +474,8 @@ pub async fn request(path: String) -> Result<Value, String> {
|
|||
Err("Page not found".to_string())
|
||||
}
|
||||
// If failed to send request
|
||||
Err(_e) => {
|
||||
dbg!(format!("{} - {}", url, _e));
|
||||
Err(e) => {
|
||||
println!("{} - Couldn't send request to Reddit: {}", url, e);
|
||||
Err("Couldn't send request to Reddit, this instance may be being rate-limited. Try another.".to_string())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue