The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Progress::Any::Output::LogAny - Output progress to Log::Any

VERSION

version 0.03

SYNOPSIS

 use Progress::Any::Output;

 Progress::Any::Output->set_output("LogAny",
     logger   => $log,
     template => '(%c/%C) %m',
 );

DESCRIPTION

This output sends progress update to Log::Any. Only progress update() containing message will be logged, unless has_message_only attribute is set to false. Logging is done at loglevel debug, but when update level is set to high, message will be logged at loglevel info. When update level is set to low, message will be logged at loglevel trace.

METHODS

new(%args) => OBJ

Instantiate. Usually called through Progress::Any::Output->set("LogAny", %args).

Known arguments:

  • logger => OBJ

    Logger object to use. Defaults to Log::Any->get_logger().

  • template => STR (default: '(%c/%C) %m')

    Will be used to do $progress->fill_template(). See Progress::Any for supported template strings.

  • has_message_only => BOOL (default: 1)

    By default, when set to 1, will cause output to only log progress update()'s which contains message. If set to 0, will log all progress update()'s.

SEE ALSO

Progress::Any

Log::Any

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Steven Haryanto.

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