package Solstice::Logger; # $Id: Logger.pm 2393 2005-07-18 17:12:40Z jlaney $ =head1 NAME Solstice::Logger - Superclass model for dispatching log messages. =head1 SYNOPSIS =head1 DESCRIPTION =cut use strict; use warnings; use 5.006_000; use base qw(Solstice); use Solstice::Logger::File; use constant TRUE => 1; use constant FALSE => 0; our ($VERSION) = ('$Revision: 1 $' =~ /^\$Revision:\s*([\d.]*)/); =head2 Export No symbols exported. =head2 Methods =over 4 =item writeLog($message) =cut sub writeLog { my $self = shift; # Backwards-compatibility default return Solstice::Logger::File->new()->writeLog(@_); } 1; __END__ =back =head2 Modules Used L. =head1 AUTHOR Catalyst Group, Ecatalyst@u.washington.eduE =head1 VERSION Version $Revision: 3177 $ =head1 COPYRIGHT Copyright 1998-2007 Office of Learning Technologies, University of Washington Licensed under the Educational Community License, Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.opensource.org/licenses/ecl1.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =cut