NAME

Gaim::Log::Parser - Parse Gaim's Log Files

SYNOPSIS

use Gaim::Log::Parser;

my $parser = Gaim::Log::Parser->new(file => $filename);

while(my $msg = $parser->next_message()) {
    print $msg->as_string();
}

DESCRIPTION

Gaim::Log::Parser parses Gaim's log files. In the 1.4+ series, they are organized in the following way:

.gaim/logs/protocol/local_user/comm_partner/2005-10-29.230219.txt

EXAMPLES

$ perl -MGaim::Log::Parser -le 'print $foo'

LEGALESE

Copyright 2005 by Mike Schilli, all rights reserved. This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

2005, Mike Schilli <cpan@perlmeister.com>