using Logger instead of Log
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 26 Jul 2005 22:35:16 +0000 (22:35 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 26 Jul 2005 22:35:16 +0000 (22:35 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@1515 dcc99617-32d9-48b4-a31d-7c20da2025e4

OpenSRF/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);