|
NAMEDancer::Logger::Capture - Capture dancer logs VERSIONversion 1.3520 SYNOPSIS set logger => "capture";
my $trap = Dancer::Logger::Capture->trap;
my $logs = $trap->read;
DESCRIPTIONThis is a logger class for Dancer which captures all logs to an object. Its primary purpose is for testing. Methodstrap Returns the Dancer::Logger::Capture::Trap object used to capture and read logs. EXAMPLE use Test::More import => ['!pass'], tests => 2;
use Dancer;
set logger => 'capture';
warning "Danger! Warning!";
debug "I like pie.";
my $trap = Dancer::Logger::Capture->trap;
is_deeply $trap->read, [
{ level => "warning", message => "Danger! Warning!" },
{ level => "debug", message => "I like pie.", }
];
# each call to read cleans the trap
is_deeply $trap->read, [];
SEE ALSODancer::Logger, Dancer::Logger::Capture::Trap AUTHORDancer Core Developers COPYRIGHT AND LICENSEThis software is copyright (c) 2010 by Alexis Sukrieh. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|