dougm 01/12/14 10:34:39
Modified: perl-framework/Apache-Test/lib/Apache TestTrace.pm
Log:
change default level to 'info'
change 'notice' color to green (previous 'reset' did not color)
change 'info' color to cyan (previous 'blue' was to dark)
change 'debug' color to magenta (good place to use most annoying color)
Revision Changes Path
1.8 +4 -4
httpd-test/perl-framework/Apache-Test/lib/Apache/TestTrace.pm
Index: TestTrace.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestTrace.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- TestTrace.pm 2001/10/20 00:35:57 1.7
+++ TestTrace.pm 2001/12/14 18:34:39 1.8
@@ -17,7 +17,7 @@
use subs (@Levels, @Utils);
# default settings overrideable by users
-$Level = 'warning';
+$Level = 'info';
$LogFH = \*STDERR;
# private data
@@ -42,9 +42,9 @@
crit => 'reverse',
error => 'bold red',
warning => 'yellow',
- notice => 'reset',
- info => 'blue',
- debug => 'green',
+ notice => 'green',
+ info => 'cyan',
+ debug => 'magenta',
reset => 'reset',
todo => 'underline',
);