Do not log debugging message as a warning (MODSEC-91)

This commit is contained in:
ivanr
2009-09-29 10:00:51 +00:00
parent 21ecf99dab
commit a1a67592ff

View File

@@ -1279,7 +1279,7 @@ static void * APR_THREAD_FUNC thread_worker(apr_thread_t *thread, void *data)
if (take_new) { if (take_new) {
error_log(LOG_DEBUG, thread, "Worker fetch locking thread mutex."); error_log(LOG_DEBUG, thread, "Worker fetch locking thread mutex.");
if (APR_STATUS_IS_EBUSY(apr_thread_mutex_trylock(mutex))) { if (APR_STATUS_IS_EBUSY(apr_thread_mutex_trylock(mutex))) {
error_log(LOG_WARNING, thread, "Worker fetch waiting on thread mutex."); error_log(LOG_DEBUG, thread, "Worker fetch waiting on thread mutex.");
apr_thread_mutex_lock(mutex); apr_thread_mutex_lock(mutex);
} }