Skip to content

Commit

Permalink
Also include podcast name.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Mar 3, 2024
1 parent 215dec8 commit d3444d9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/service/podcast_episode_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,14 @@ impl PodcastEpisodeService {
}
Err(e) => {
log::info!(
"Error parsing podcast {:?} with cause {:?}",
"Error parsing podcast {} {:?} with cause {:?}",
podcast.name,
returned_data_from_podcast_insert.content,
e
);
Err(CustomError::BadRequest(format!(
"Error parsing podcast {:?}",
podcast
"Error parsing podcast {} with cause {:?}",
podcast.name,e
)))
}
}
Expand Down

0 comments on commit d3444d9

Please sign in to comment.