throw warn instead of error
This commit is contained in:
parent
b9bc4b4ab0
commit
6a6886c818
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ sub execute {
|
||||||
$self->session->errorHandler->info("GetSyndicatedContent workflow: Caching $url");
|
$self->session->errorHandler->info("GetSyndicatedContent workflow: Caching $url");
|
||||||
my $returnValue = WebGUI::Asset::Wobject::SyndicatedContent::_get_rss_data($self->session, $url);
|
my $returnValue = WebGUI::Asset::Wobject::SyndicatedContent::_get_rss_data($self->session, $url);
|
||||||
if (!defined $returnValue) {
|
if (!defined $returnValue) {
|
||||||
$self->session->errorHandler->error("GetSyndicatedContent Workflow Activity: _get_rss_data returned undef while trying to process syndicated content url $url, which usually indicates an improper URL, or a malformed document");
|
$self->session->errorHandler->warn("GetSyndicatedContent Workflow Activity: _get_rss_data returned undef while trying to process syndicated content url $url, which usually indicates an improper URL, or a malformed document");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
# Check for timeout
|
# Check for timeout
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue