We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d98d3f8 commit f530318Copy full SHA for f530318
src/web/crate_details.rs
@@ -18,6 +18,7 @@ use axum::{
18
response::{IntoResponse, Response as AxumResponse},
19
};
20
use chrono::{DateTime, Utc};
21
+use log::warn;
22
use postgres::GenericClient;
23
use serde::Deserialize;
24
use serde::{ser::Serializer, Serialize};
@@ -410,7 +411,7 @@ pub(crate) async fn crate_details_handler(
410
411
412
match details.fetch_readme(&storage) {
413
Ok(readme) => details.readme = readme.or(details.readme),
- Err(e) => report_error(&e),
414
+ Err(e) => warn!("error fetching readme: {:?}", &e),
415
}
416
417
Ok(details)
0 commit comments