NAME
    Log::Any::Adapter::Log::Dispatch

SYNOPSIS
        use Log::Dispatch;
        my $dispatcher = Log::Dispatch->new();
        $dispatcher->add(Log::Dispatch::File->new(...));
        $dispatcher->add(Log::Dispatch::Screen->new(...));
        Log::Any->set_adapter('Log::Dispatch', dispatcher => $dispatcher);

DESCRIPTION
    This Log::Any adapter uses Log::Dispatch for logging. There is a single
    required parameter, *dispatcher*, which must be a valid Log::Dispatch
    object.

SEE ALSO
    Log::Any, Log::Dispatch

AUTHOR
    Jonathan Swartz

COPYRIGHT & LICENSE
    Copyright (C) 2007 Jonathan Swartz, all rights reserved.

    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

