Re: [users@httpd] In what condition, can this log message be printed?

2012-12-06 Thread Tianyin Xu
Hi, Eric, I'm sorry for the disturbing for this problem. I used GDB to trace the code, in the hope of understanding why httpd never print that log message. Basically, that following code print out the log message: /* server/mpm/event/event.c */ 3182 ap_log_error(APLOG_MARK, APLOG_INFO,

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-06 Thread Tom Evans
On Thu, Dec 6, 2012 at 8:02 AM, Tianyin Xu t...@cs.ucsd.edu wrote: Hi, Eric, I'm sorry for the disturbing for this problem. I used GDB to trace the code, in the hope of understanding why httpd never print that log message. Basically, that following code print out the log message: /*

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-06 Thread Tianyin Xu
Hi, Tom, Your read the code too fast :-P Yes, it's #ifndef, which means if you do NOT define DEBUG, you will go inside the block and return. :-) So it only logs when you define the DEBUG. My first reaction is exactly as you suggested, trying to tune the LogLevel. But it does NOT help, i.e.,

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-05 Thread Eric Covener
On Wed, Dec 5, 2012 at 1:55 AM, Tianyin Xu t...@cs.ucsd.edu wrote: Hi, all, I noticed in my error log the MaxRequestWorkers setting is reached, but I never configured this option. Further, I found it's deprecated according to the log. In the code, I find the following logging statement: /*

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-05 Thread Tianyin Xu
Thanks, Eric. Yes, I understand. But my problem is whatever LogLevel I set, I cannot see this message, neither in error log nor in stderr. I guess I must miss something. Best, Tianyin On Wed, Dec 5, 2012 at 4:09 AM, Eric Covener cove...@gmail.com wrote: On Wed, Dec 5, 2012 at 1:55 AM,

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-05 Thread Eric Covener
On Wed, Dec 5, 2012 at 2:20 PM, Tianyin Xu t...@cs.ucsd.edu wrote: I guess I must miss something. but I never configured this option. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands,

Re: [users@httpd] In what condition, can this log message be printed?

2012-12-05 Thread Tianyin Xu
No no, what I mean is that I never configured MaxRequestWorkers but I configured MaxClients. But I never see the log messge MaxClients is deprecated, use MaxRequestWorkers instead. I just wonder where can I find these types of log messages in my system. Thanks a lot! Tianyin On Wed, Dec 5,

[users@httpd] In what condition, can this log message be printed?

2012-12-04 Thread Tianyin Xu
Hi, all, I noticed in my error log the MaxRequestWorkers setting is reached, but I never configured this option. Further, I found it's deprecated according to the log. In the code, I find the following logging statement: /* server/mpm/event/event.c */ if (!strcasecmp(cmd-cmd-name,