VERSION
version 1.3202SYNOPSIS
set logger => "capture";
my $trap = Dancer::Logger::Capture->trap;
my $logs = $trap->read;
DESCRIPTION
This is a logger class for Dancer which captures all logs to an object.Its primary purpose is for testing.
Methods
trapReturns 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, [];
AUTHOR
Dancer Core DevelopersCOPYRIGHT AND LICENSE
This 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.