App-Sysadmin-Log-Simple
view release on metacpan or search on metacpan
lib/App/Sysadmin/Log/Simple/File.pm view on Meta::CPAN
$lastmonth = 0;
}
if ($month != $lastmonth) {
say $indexfh "\n### $month ###\n";
$lastmonth = $month;
}
if ($year == $lastyear and $month == $lastmonth) {
say $indexfh "[$day]($year/$month/$day)"
}
}
close $indexfh;
return;
}
1;
__END__
=pod
=encoding utf-8
=head1 NAME
App::Sysadmin::Log::Simple::File - a file-logger for App::Sysadmin::Log::Simple
=head1 VERSION
version 0.009
=head1 DESCRIPTION
This provides methods to App::Sysadmin::Log::Simple for logging to a file, and
viewing those log files.
=head1 METHODS
=head2 new
This creates a new App::Sysadmin::Log::Simple::File object. It takes a hash of
options with keys:
=over 4
=item logdir
This specifies the top of the tree of log files. Default is F</var/log/sysadmin>.
Please note that unprivileged users are typically not permitted to create the
default log directory.
=item index_preamble
This is a string to place at the top of the index page.
=item view_preamble
This is a string to prepend when viewing the log files.
=item date
This is a DateTime object for when the log entry was made I<or> for specifying
which date's log file to view, depending on the mode of operation.
=back
=head2 view
This allows users to view a log file in a pager provided by L<IO::Pager>,
typically L<less(1)>.
=head2 log
This creates a new log file if needed, adds the log entry to it, and re-generates
the index file as necessary.
=head1 AVAILABILITY
The project homepage is L<http://p3rl.org/App::Sysadmin::Log::Simple>.
The latest version of this module is available from the Comprehensive Perl
Archive Network (CPAN). Visit L<http://www.perl.com/CPAN/> to find a CPAN
site near you, or see L<https://metacpan.org/module/App::Sysadmin::Log::Simple/>.
=head1 SOURCE
The development version is on github at L<http://github.com/doherty/App-Sysadmin-Log-Simple>
and may be cloned from L<git://github.com/doherty/App-Sysadmin-Log-Simple.git>
=head1 BUGS AND LIMITATIONS
You can make new bug reports, and view existing ones, through the
web interface at L<https://github.com/doherty/App-Sysadmin-Log-Simple/issues>.
=head1 AUTHOR
Mike Doherty <doherty@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Mike Doherty.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
( run in 1.814 second using v1.01-cache-2.11-cpan-5a3173703d6 )