dougm 01/12/14 10:40:43
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
TestConfigC.pm TestSSLCA.pm
Log:
change some levels around for more/less tracing
Revision Changes Path
1.106 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- TestConfig.pm 2001/12/14 09:32:11 1.105
+++ TestConfig.pm 2001/12/14 18:40:43 1.106
@@ -940,7 +940,7 @@
(my $generated = $file) =~ s/\.in$//;
push @extra_conf, $generated;
- notice "Including $generated config file";
+ debug "Including $generated config file";
next if -e $generated
&& -M $generated < -M $file;
1.17 +3 -3
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigC.pm
Index: TestConfigC.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigC.pm,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- TestConfigC.pm 2001/11/07 20:00:04 1.16
+++ TestConfigC.pm 2001/12/14 18:40:43 1.17
@@ -134,7 +134,7 @@
my $dversion = $self->server->dversion;
my $name = $mod->{name};
my $makefile = "$mod->{dir}/Makefile";
- notice "writing $makefile";
+ debug "writing $makefile";
my $lib = $self->cmodules_build_so($name);
@@ -160,7 +160,7 @@
my $targ = shift || 'all';
my $cmd = "cd $self->{cmodules_dir} && $Config{make} $targ";
- notice $cmd;
+ debug $cmd;
system $cmd;
}
@@ -208,7 +208,7 @@
for my $mod (@{ $self->{cmodules} }) {
my $makefile = "$mod->{dir}/Makefile";
- notice "unlink $makefile";
+ debug "unlink $makefile";
unlink $makefile;
}
1.2 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm
Index: TestSSLCA.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestSSLCA.pm 2001/12/14 08:54:30 1.1
+++ TestSSLCA.pm 2001/12/14 18:40:43 1.2
@@ -108,7 +108,7 @@
my $cmd = "$openssl @_";
- warning $cmd;
+ info $cmd;
unless (system($cmd) == 0) {
my $status = $? >> 8;