Geoffrey Young wrote: [...]
Index: lib/ModPerl/Code.pm
===================================================================
RCS file: /home/cvspublic/modperl-2.0/lib/ModPerl/Code.pm,v
retrieving revision 1.112
diff -u -r1.112 Code.pm
--- lib/ModPerl/Code.pm 23 Oct 2003 19:46:42 -0000 1.112
+++ lib/ModPerl/Code.pm 28 Oct 2003 15:59:42 -0000
@@ -451,7 +451,7 @@
}
my %trace = (
-# 'a' => 'all',
+ 'a' => 'Apache API interaction',
Ah, sorry, I forgot that 'a' is taken by 'all'. I can't think of another good choice. In which case how about 'p' for aPache?
'c' => 'configuration for directive handlers',
'd' => 'directive processing',
'e' => 'environment variables',
@@ -481,13 +481,13 @@
#define MP_TRACE_OPTS "$opts"
#ifdef MP_TRACE
-#define MP_TRACE_a if ($tl) modperl_trace
-#define MP_TRACE_a_do(exp) if ($tl) { \\
+#define MP_TRACE_any if ($tl) modperl_trace
+#define MP_TRACE_any_do(exp) if ($tl) { \\
exp; \\
}
#else
-#define MP_TRACE_a if (0) modperl_trace
-#define MP_TRACE_a_do(exp)
+#define MP_TRACE_any if (0) modperl_trace
+#define MP_TRACE_any_do(exp)
#endif
EOF
Index: src/modules/perl/modperl_log.c
===================================================================
RCS file: /home/cvspublic/modperl-2.0/src/modules/perl/modperl_log.c,v
retrieving revision 1.9
diff -u -r1.9 modperl_log.c
--- src/modules/perl/modperl_log.c 23 Sep 2003 08:04:42 -0000 1.9
+++ src/modules/perl/modperl_log.c 28 Oct 2003 15:59:42 -0000
@@ -74,5 +74,5 @@
modperl_trace_logfile_set(s->error_log);
- MP_TRACE_a_do(MP_TRACE_dump_flags());
+ MP_TRACE_any_do(MP_TRACE_dump_flags());
So, did you change s/all/any/?
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
