remove unnecesary log

This commit is contained in:
Pedro Pérez 2024-11-06 22:55:33 +01:00
parent 90c21a1f55
commit fdee50b574

View File

@ -144,7 +144,6 @@ func extractEpisodesFromSeason(data string) []Episode {
episode.Rate = parseStarRating(starRating)
voteCount := s.Find(voteCountSelector).Text()
slog.Info("vote count", "count", voteCount)
episode.VoteCount = parseVoteCount(voteCount)
episodes = append(episodes, episode)