From fdee50b574cf06625afb8067a820d3fa4a90de65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20P=C3=A9rez?= Date: Wed, 6 Nov 2024 22:55:33 +0100 Subject: [PATCH] remove unnecesary log --- core/internal/scraper/tvshow.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/internal/scraper/tvshow.go b/core/internal/scraper/tvshow.go index ffe63e8..5654060 100644 --- a/core/internal/scraper/tvshow.go +++ b/core/internal/scraper/tvshow.go @@ -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)