Log::Dispatch::Binlog - L<Storable> based binary logs.


Log-Dispatch-Binlog documentation Contained in the Log-Dispatch-Binlog distribution.

Index


Code Index:

NAME

Top

Log::Dispatch::Binlog - Storable based binary logs.

SYNOPSIS

Top

	use Log::Dispatch::Binlog::File;

	# or

	use Log::Dispatch::Binlog::Handle;

DESCRIPTION

Top

The two classes provide in this distribution provide Storable based binary logging for Log::Dispatch.

This is useful for testing your log output, or for delegating log output to a listener on a socket without losing high level information.

This file is just for documentation/version purposes, you must use one of Log::Dispatch::Binlog::File or Log::Dispatch::Binlog::Handle directly.

VERSION CONTROL

Top

This module is maintained using Darcs. You can get the latest version from http://nothingmuch.woobling.org/code, and use darcs send to commit changes.

AUTHOR

Top

Yuval Kogman <nothingmuch@woobling.org>

COPYRIGHT

Top


Log-Dispatch-Binlog documentation Contained in the Log-Dispatch-Binlog distribution.

#!/usr/bin/perl

package Log::Dispatch::Binlog;

use strict;

use vars qw($VERSION);

$VERSION = "0.02";

__PACKAGE__

__END__