Build Status Coverage Status

NAME

Log::Minimal::Object - Provides the OOP interface of Log::Minimal

SYNOPSIS

use Log::Minimal::Object;

my $logger = Log::Minimal::Object->new();
$logger->infof("This is info!"); # => 2014-05-18T17:24:02 [INFO] This is info! at eg/sample.pl line 13
$logger->warnf("This is warn!"); # => 2014-05-18T17:24:02 [WARN] This is warn! at eg/sample.pl line 14

DESCRIPTION

Log::Minimal::Object is the simple wrapper to provide the OOP interface of Log::Minimal.

This module can have and apply independent customize settings for each instance, it's intuitive!

CLASS METHODS

INSTANCE METHODS

Instance of this module provides the methods that are defined in the "EXPORT FUNCTIONS" in Log::Minimal (e.g. infof, warnf, and etc).

CONFIGURATIONS

The configurable keys and its relations are follows (please see also "CUSTOMIZE" in Log::Minimal to get information of $Log::Minimal::*):

PROVIDED CONSTANTS

SEE ALSO

Log::Minimal

LICENSE

Copyright (C) moznion.

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

AUTHOR

moznion moznion@gmail.com