From: erickson Date: Tue, 26 Jul 2005 22:35:16 +0000 (+0000) Subject: using Logger instead of Log X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a4beb00ee03325ec07f59e0495020d2965a2036d;p=Evergreen.git using Logger instead of Log git-svn-id: svn://svn.open-ils.org/ILS/trunk@1515 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/OpenSRF/src/perlmods/OpenSRF/Utils/Config.pm b/OpenSRF/src/perlmods/OpenSRF/Utils/Config.pm index a447c78000..434ceb51de 100755 --- a/OpenSRF/src/perlmods/OpenSRF/Utils/Config.pm +++ b/OpenSRF/src/perlmods/OpenSRF/Utils/Config.pm @@ -358,7 +358,7 @@ sub load_config { my $self = shift; my $config = new FileHandle $self->FILE, 'r'; unless ($config) { - OpenSRF::Utils::Log->error("Could not open ".$self->FILE.": $!\n"); + OpenSRF::Utils::Logger->error("Could not open ".$self->FILE.": $!\n"); die "Could not open ".$self->FILE.": $!\n"; } my @stripped_config = $self->__strip_comments($config) if (defined $config);