Apache Error Log Format

2005-05-31 Thread Daniel B. Hemmerich
Hello all... When a misconfiguration occurs, we receive a new line in the apache error logs that is not in the standard error log format (I assume since MP is writing to STDERR). Short of changing all of our scripts to properly log, is there a quicker method to accomplish the following change:

Re: Apache Error Log Format

2005-05-31 Thread Jonathan Vanasco
I really have no idea, but no one has chimed up on this, so I'll try to help (and maybe someone here can clear up my misconceptions) MP writes to STDERR, BUT things can get weird because of the way apache2 handles error messages -- I could have this wrong, but mp errors and perl errors seem

Re: Apache Error Log Format

2005-05-31 Thread Daniel B. Hemmerich
Thanks for the good idea... it is a direction worth investigating further. Until someone offers a potentially better solution, I will play around with this and hopefully in the next few days report back on my results! Thanks again, Daniel Jonathan Vanasco wrote: I really have no idea, but n

Re: Apache Error Log Format

2005-06-01 Thread Arshavir Grigorian
Daniel B. Hemmerich wrote: Thanks for the good idea... it is a direction worth investigating further. Until someone offers a potentially better solution, I will play around with this and hopefully in the next few days report back on my results! Thanks again, Daniel Jonathan Vanasco wrote:

Re: Apache Error Log Format

2005-06-01 Thread Daniel B. Hemmerich
That sounds more like the opposite... I do want Apache to be prefixing each error message with its data... Unless I misunderstood what that page was saying Arshavir Grigorian wrote: Daniel B. Hemmerich wrote: Thanks for the good idea... it is a direction worth investigating further. Until so

Re: Apache Error Log Format

2005-06-04 Thread Stas Bekman
[guys, please trim the followups to quote only parts you reply to. Otherwise the threads are impossible to read later on. Thank you] Daniel B. Hemmerich wrote: Hello all... When a misconfiguration occurs, we receive a new line in the apache error logs that is not in the standard error log for

Re: Apache Error Log Format

2005-06-05 Thread Daniel B. Hemmerich
Stas Bekman wrote: Who generates this "Can't locate" message? Normal die() messages should already be prefixed. This is occuring during a require, such as: require '/www/path/goes/here//config.pl'; The script itself is poorly written since it should be doing its own -e check prior to requir

Re: Apache Error Log Format

2005-06-06 Thread Stas Bekman
Daniel B. Hemmerich wrote: Stas Bekman wrote: Who generates this "Can't locate" message? Normal die() messages should already be prefixed. This is occuring during a require, such as: require '/www/path/goes/here//config.pl'; > The script itself is poorly written since it should be doing it