Re: Apache Error Log

2002-06-12 Thread Randy Kobes
On Wed, 12 Jun 2002, Jaberwocky wrote: No, all I really want to do is print to STDERR As Stas mentioned, it'd be helpful to see a short snippet to illustrate your problem ... But the fact that you don't see the messages in the logs until a server shutdown/restart suggests some buffering going

Re: Apache Error Log

2002-06-12 Thread Doug MacEachern
On Wed, 12 Jun 2002, Jaberwocky wrote: No, all I really want to do is print to STDERR you can use warn() instead which writes to stderr and always autoflushes. or turn on autoflush of STDERR yourself, from perlfunc.pod: $oldfh = select(STDERR); $| = 1; select($oldfh); or update modperl-2.0

RE: Apache Error Log

2002-06-12 Thread Jim Morrison [Mailinglists]
-Original Message- From: Doug MacEachern [mailto:[EMAIL PROTECTED]] Sent: 12 June 2002 22:12 To: Jaberwocky Cc: Stas Bekman; [EMAIL PROTECTED] Subject: Re: Apache Error Log On Wed, 12 Jun 2002, Jaberwocky wrote: No, all I really want to do is print to STDERR you can use warn() instead

Apache Error Log

2002-06-11 Thread steve
Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error logging. I don't seem to get my apache stderr untill I shutdown/restart the server. Thenit prints out the whole thing in one big

Fw: Apache Error Log

2002-06-11 Thread steve
- Original Message - From: steve To: [EMAIL PROTECTED] Sent: Sunday, June 09, 2002 7:42 AM Subject: Apache Error Log Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error

Apache Error Log

2002-06-11 Thread steve
Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error logging. I don't seem to get my apache stderr untill I shutdown/restart the server. Thenit prints out the whole thing in one big

Re: Apache Error Log

2002-06-11 Thread Stas Bekman
steve wrote: Hey people.. Wondering if someone could help me with this... Please do not repost your question 3 times! I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error logging. I don't seem to get my apache stderr untill I shutdown/restart