Remove debug logs

This commit is contained in:
2023-01-06 19:20:32 +01:00
parent a849bb0eb2
commit 6f3eb1689c
2 changed files with 0 additions and 3 deletions

View File

@@ -26,7 +26,6 @@ pub async fn download(
let download_result = match book_download(source_id, remote_id, file_type.as_str()).await {
Ok(v) => v,
Err(err) => {
log::debug!("{:?}", err);
return Err((StatusCode::NO_CONTENT, "Can't download!".to_string()))
},
};