=head1 NAME Log::Handler::Plugin::Config::General - Config loader for Config::General. =head1 SYNOPSIS use Log::Handler::Plugin::Config::General; my $config = Log::Handler::Plugin::Config::General->get_config( $config_file ); =head1 ROUTINES =head2 get_config() Expect the config file name and returns the config as a reference. =head1 CONFIG STYLE fileopen = 1 reopen = 1 permissions = 0640 maxlevel = info mode = append timeformat = %b %d %H:%M:%S debug_mode = 2 filename = example.log minlevel = warn message_layout = %T %H[%P] [%L] %S: %m newline = 1 =head1 PREREQUISITES Config::General =head1 EXPORTS No exports. =head1 REPORT BUGS Please report all bugs to . If you send me a mail then add Log::Handler into the subject. =head1 AUTHOR Jonny Schulz . =head1 COPYRIGHT Copyright (C) 2007-2009 by Jonny Schulz. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut package Log::Handler::Plugin::Config::General; use strict; use warnings; use Config::General; our $VERSION = '0.02'; sub get_config { my ($class, $config_file) = @_; my $config = Config::General->new($config_file); my %config = $config->getall(); return \%config; } 1;