X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestLogger.pm;h=6c1a26e01bc55eb94fd5826047f2f87aaeb246b2;hp=f1dc7e613f676992ce5b505dd297f26da128d8ad;hb=c13f6e7ecb789a860ee01f163a5e4b66a4854186;hpb=be7d405452053e8df328d5c97ccd63ba4b21683e diff --git a/t/lib/TestLogger.pm b/t/lib/TestLogger.pm index f1dc7e6..6c1a26e 100644 --- a/t/lib/TestLogger.pm +++ b/t/lib/TestLogger.pm @@ -3,6 +3,7 @@ use strict; use warnings; our @LOGS; +our @ILOGS; our @ELOGS; sub new { @@ -14,6 +15,11 @@ sub debug { push(@LOGS, shift()); } +sub info { + shift; + push(@ILOGS, shift()); +} + sub warn { shift; push(@ELOGS, shift());