using Logger instead of Log
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 26 Jul 2005 22:35:16 +0000 (22:35 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 26 Jul 2005 22:35:16 +0000 (22:35 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@432 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/Utils/Config.pm

index a447c78..434ceb5 100755 (executable)
@@ -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);