Error logging

This commit is contained in:
spikecodes 2021-01-15 10:58:53 -08:00
parent 0c014ad41b
commit bca2a7e540
2 changed files with 2 additions and 2 deletions

View file

@ -388,7 +388,7 @@ pub async fn request(path: &str) -> Result<Value, String> {
// Print error if debugging then return error based on error message
fn err(url: String, msg: String) -> Result<Value, String> {
#[cfg(debug_assertions)]
// #[cfg(debug_assertions)]
dbg!(format!("{} - {}", url, msg));
Err(msg)
};