X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FLogging%2FWarnLogger.pm;h=f9ffc929bd7abc3ebf2a3ace37b5061ec1c0e46a;hp=431df4a14fa4b3375659caf02a7bfb1867fcd67e;hb=455d031ccaa22069757d53cac1e90fda622b80d0;hpb=d672a9bff87112bf8cfea0a5749e934d4c8c996e diff --git a/lib/Object/Remote/Logging/WarnLogger.pm b/lib/Object/Remote/Logging/WarnLogger.pm index 431df4a..f9ffc92 100644 --- a/lib/Object/Remote/Logging/WarnLogger.pm +++ b/lib/Object/Remote/Logging/WarnLogger.pm @@ -5,7 +5,6 @@ use Moo; extends 'Object::Remote::Logging::Logger'; has format => ( is => 'ro', required => 1, default => sub { '%s at %f line %i, log level: %l' } ); -has max_level => ( is => 'ro', required => 1, default => sub { 'error' } ); has min_level => ( is => 'ro', required => 1, default => sub { 'warn' } ); sub output { warn $_[1] };