From: erickson Date: Thu, 13 Jul 2006 22:06:34 +0000 (+0000) Subject: fixed log error X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1dc064a7ae7de4dcdc7221466fdac5ef5f13b953;p=Evergreen.git fixed log error git-svn-id: svn://svn.open-ils.org/ILS/trunk@4999 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Syndetic.pm b/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Syndetic.pm index bd992a924c..6e09b264e1 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Syndetic.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Syndetic.pm @@ -226,7 +226,7 @@ sub fetch_content { $logger->info("added content URL = $url"); my $agent = LWP::UserAgent->new; my $res = $agent->get($url); - die "added content request failed: $res->status_line\n" unless $res->is_success; + die "added content request failed: " . $res->status_line ."\n" unless $res->is_success; return $res->content; }