Update YouTube Feed error logging

This commit is contained in:
2026-06-26 23:57:09 -05:00
parent c6ccbd5b6c
commit 45a8b010fc
2 changed files with 5 additions and 4 deletions

View File

@@ -159,8 +159,9 @@ public class BiscuitGuild {
try {
log("Updating Youtube feeds...");
postYoutubeFeeds();
} catch (IOException e) {
e.printStackTrace();
} catch (Throwable t) {
error("There was a problem updating the YouTube Feeds.");
t.printStackTrace();
}
};
ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);