Log::Mini - It's a very simple logger which can log your messages to a file or STDERR.
Find a file
2023-03-17 19:37:05 +00:00
lib/Log small fixes 2023-03-17 21:53:33 +03:00
t small fixes 2023-03-17 21:53:33 +03:00
.gitignore Checking in changes prior to tagging of version 0.3.0. 2023-03-17 22:35:40 +03:00
.travis.yml small fixes 2019-02-21 23:23:53 +03:00
Build.PL Initial commit 2019-02-21 22:30:49 +03:00
Changes Checking in changes prior to tagging of version 0.3.0. 2023-03-17 22:35:40 +03:00
cpanfile Initial commit 2019-02-21 22:30:49 +03:00
LICENSE Initial commit 2019-02-21 22:30:49 +03:00
META.json Checking in changes prior to tagging of version 0.3.0. 2023-03-17 22:35:40 +03:00
minil.toml Initial commit 2019-02-21 22:30:49 +03:00
README.md Checking in changes prior to tagging of version 0.3.0. 2023-03-17 22:35:40 +03:00

NAME

Log::Mini - It's a very simple logger which can log your messages to a file or STDERR.

SYNOPSIS

use Log::Mini;

my $logger = Log::Mini->new(); #STDERR logger used by default. Error is default log level
$logger->error('Error message');

my $debug_logger = Log::Mini->new('stderr', level => 'debug'); #STDERR logger used by default
$debug_logger->error('Error message');

my $file_logger = Log::Mini->new(file => 'log_file.log');
$file_logger->info('message to log file');

#prevent buffered output. May slow down your application!
my $synced_file_logger = Log::Mini->get_logger(file => 'log_file.log', synced => 1);

#format message with sprintf
$logger->info('Message with %s %s', 'some', 'additional info');

#log method for better compatibility
$logger->log('info', 'information message');

#Null logger - drops all messages to /dev/null
my $logger = Log::Mini->new('null);
$logger->error('Error message'); #Message will be dropped

DESCRIPTION

Log::Mini is a very simple logger which can log your messages to a file or STDERR. You can have a number of loggers for various log files.

LICENSE

Copyright (C) Denis Fedoseev

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

AUTHOR

Denis Fedoseev denis.fedoseev@gmail.com