Skip to content

Commit 688d05a

Browse files
committed
fix: remove redundant error logging in parseRSSFeedAndSaveToDatabase
1 parent a42f6da commit 688d05a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/lib/rss/parser.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ export const parseRSSFeedAndSaveToDatabase = async (url: string, podcast_index_i
9797
const feedLogService = new FeedLogService();
9898
await feedLogService.update(feed, { last_finished_parse_time: new Date() });
9999
} catch (error) {
100-
logError('parseRSSFeedAndSaveToDatabase', error as Error);
101100
if (error instanceof FeedIsParsingError) {
102101
logger.warn(`Feed ${feed?.id} is already parsing.`);
103102
} else if (error instanceof FeedNoChangesSinceLastParsedError) {

0 commit comments

Comments
 (0)