Re: Apache::PerlRun flooding error log

2005-04-06 Thread David J Radunz
I found a way to stop the errors/warnings within PerlRun - but your right, were going to spend the time removing SIG completely and implement a PerlTransHandler on the development server to turn it on always (saves 'accidently' leaving it in the code). Thanks man, David On Wed, 2005-04-06 at 01:

Re: Apache::PerlRun flooding error log

2005-04-05 Thread Stas Bekman
David J Radunz wrote: Well, all of these scripts run under PerlRun - so I either have to make that change in every one of them, and every module they load. Like, if I set the SIG{__WARN__} at the top of a script and a module set it, wouldn't it then be 'reset' ? Why would any module mungle with %SI

Re: Apache::PerlRun flooding error log

2005-04-05 Thread David J Radunz
Well, all of these scripts run under PerlRun - so I either have to make that change in every one of them, and every module they load. Like, if I set the SIG{__WARN__} at the top of a script and a module set it, wouldn't it then be 'reset' ? David On Wed, 2005-04-06 at 01:00 -0400, Stas Bekman wro

Re: Apache::PerlRun flooding error log

2005-04-05 Thread Stas Bekman
Stas Bekman wrote: David J Radunz wrote: Sounds great - yet obvious. I would have to do about 2 years worth of work to fix all of the bugs. I didn't create them either, I fix them in my own code - but we have so much code base. I wanted a mod_perl solution to overcome this issue by filtering the er

Re: Apache::PerlRun flooding error log

2005-04-05 Thread Stas Bekman
David J Radunz wrote: Sounds great - yet obvious. I would have to do about 2 years worth of work to fix all of the bugs. I didn't create them either, I fix them in my own code - but we have so much code base. I wanted a mod_perl solution to overcome this issue by filtering the error. If that's the

Re: Apache::PerlRun flooding error log

2005-04-05 Thread David J Radunz
Sounds great - yet obvious. I would have to do about 2 years worth of work to fix all of the bugs. I didn't create them either, I fix them in my own code - but we have so much code base. I wanted a mod_perl solution to overcome this issue by filtering the error. DJ On Tue, 2005-04-05 at 22:06 -04

Re: Apache::PerlRun flooding error log

2005-04-05 Thread Stas Bekman
David J Radunz wrote: Heya All, I have an issue at the moment where if there is an error/warning in my PerlRun script/module then the error/warning is printed as well as the entire contents of the script being eval'ed. This only occurs when a string is evaled and Carp stack trace is on. David, w

Apache::PerlRun flooding error log

2005-04-05 Thread David J Radunz
Heya All, I have an issue at the moment where if there is an error/warning in my PerlRun script/module then the error/warning is printed as well as the entire contents of the script being eval'ed. This only occurs when a string is evaled and Carp stack trace is on. And this can be replicated eas