release 0.00200 v0.00200
Arthur Axel 'fREW' Schmidt [Wed, 3 Mar 2010 06:17:59 +0000 (00:17 -0600)]
Changes
lib/Log/Contextual.pm
t/simplelogger.t

diff --git a/Changes b/Changes
index 8a106bf..93da611 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 ChangeLog for Log-Contextual
 
+0.00200 2010-03-03
+  - add example for Log::Dispatchouli since it works nicely now
   - make Log::Log4perl work out of the box
   - Added WarnLogger for libraries
   - Warn if set_logger is called more than once
index 6224f63..8ac94b1 100644 (file)
@@ -1,11 +1,9 @@
-# add example for Log::Dispatchouli
-
 package Log::Contextual;
 
 use strict;
 use warnings;
 
-our $VERSION = '0.00101';
+our $VERSION = '0.00200';
 
 require Exporter;
 use Data::Dumper::Concise;
index 2cfcaaa..968ff83 100644 (file)
@@ -34,7 +34,10 @@ my $l2 = Log::Contextual::SimpleLogger->new({
    levels => [qw{trace debug info warn error fatal}],
    coderef => sub { $response = $_[0] },
 });
-set_logger($l2);
+{
+       local $SIG{__WARN__} = sub {}; # do this just to hide warning for tests
+       set_logger($l2);
+}
 log_trace { 'trace' };
 is($response, "[trace] trace\n", 'trace renders correctly');
 log_debug { 'debug' };