The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
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<Solstice|Solstice>.

=head1 AUTHOR

Catalyst Group, E<lt>catalyst@u.washington.eduE<gt>

=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