Skip to content

Commit

Permalink
💬 ✏️ Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pvillaverde committed May 16, 2024
1 parent 4e9de73 commit 199ef49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tasks/refreshPodcasts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default async function refreshPodcasts() {
}
logger.info(`${index + 1}/${podcasts.length}`, `Recuperados ${entries.length} episodios de ${item.title}.`);
} catch (error) {
logger.fatal(`Erro ao actualizar o blogue ${item.title}`);
logger.fatal(`Erro ao actualizar o podcast ${item.title}`);
logger.fatal(error);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/refreshYoutube.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default async function refreshYoutube() {
// Rate Limit 1/sec
await new Promise((resolve) => setTimeout(resolve, 1000));
} catch (error) {
logger.error(`Erro ao actualizar o blogue ${item.title}`);
logger.error(`Erro ao actualizar a canle de YouTube ${item.title}`);
logger.error(error);
}
}
Expand Down

0 comments on commit 199ef49

Please sign in to comment.