possible issue in mod_perl 2.0.4 with respect to STDERR

2009-11-12 Thread Shibi NS
Configuration error log is in my applications httpd config file is ErrorLog = '| rotatelogs \log\error_log 1M ' But if print something on STDERR from mod_perl program , Say debug print (print STDERR DEBUG ;) this is going to \log\error_log instead of \log\error_log.NNN Is this is a mod perl

Re: possible issue in mod_perl 2.0.4 with respect to STDERR

2009-11-12 Thread Torsten Foertsch
On Thu 12 Nov 2009, Shibi NS wrote: Configuration error log is in my applications httpd config file is ErrorLog = '| rotatelogs \log\error_log 1M ' But if print something on STDERR from mod_perl program , Say debug print (print STDERR DEBUG ;) this is going to \log\error_log instead of

Re: possible issue in mod_perl 2.0.4 with respect to STDERR

2009-11-12 Thread Shibi NS
No its not VHOST The configuration in httpd look like this Perl my $app_home = $ENV{APPS_HOME}; my $config= ConfigLoader::include($app_home/conf/ ursforms.pl); my $clog = '| rotatelogs '. $config-{log_accessfile} . '%y%m%d 1M common'; my $elog