summaryrefslogtreecommitdiff
path: root/lib/Feed/Utils.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Feed/Utils.pm')
-rw-r--r--lib/Feed/Utils.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Feed/Utils.pm b/lib/Feed/Utils.pm
index 9752427..db2fb18 100644
--- a/lib/Feed/Utils.pm
+++ b/lib/Feed/Utils.pm
@@ -36,7 +36,12 @@ sub feed {
%feed_args,
%args,
});
- $feed->process;
+
+ try {
+ $feed->process;
+ } catch {
+ $feed->log->error($_);
+ };
return;
}