From 1de01d7283168bb35fb66903e3f7c69493348e21 Mon Sep 17 00:00:00 2001 From: spikecodes <19519553+spikecodes@users.noreply.github.com> Date: Thu, 25 Feb 2021 16:21:56 -0800 Subject: [PATCH] Log errors to io::stderr --- src/utils.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index 63f132e..2a60417 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -478,10 +478,6 @@ pub fn time(created: f64) -> (String, String) { (rel_time, time.format("%b %d %Y, %H:%M:%S UTC")) } -// -// JSON PARSING -// - // val() function used to parse JSON from Reddit APIs pub fn val(j: &Value, k: &str) -> String { j["data"][k].as_str().unwrap_or_default().to_string() @@ -528,7 +524,7 @@ pub async fn request(path: String) -> Result { let res = client.send(req).await; let err = |msg: &str, e: String| -> Result { - println!("{} - {}: {}", url, msg, e); + eprintln!("{} - {}: {}", url, msg, e); Err(msg.to_string()) }; @@ -547,7 +543,7 @@ pub async fn request(path: String) -> Result { .as_str() .unwrap_or_else(|| { json["message"].as_str().unwrap_or_else(|| { - println!("{} - Error parsing reddit error", url); + eprintln!("{} - Error parsing reddit error", url); "Error parsing reddit error" }) })