mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-16 07:56:12 +03:00
Fixes issue #1432 by not logging normal behavior to error.log and using APLOG_DEBUG instead
This commit is contained in:
parent
624bd2bf82
commit
1684400eee
@ -1494,7 +1494,7 @@ static int hook_connection_early(conn_rec *conn)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, conn,
|
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, conn,
|
||||||
"ModSecurity: going to loop through %d servers with %d threads",
|
"ModSecurity: going to loop through %d servers with %d threads",
|
||||||
server_limit, thread_limit);
|
server_limit, thread_limit);
|
||||||
for (i = 0; i < server_limit; ++i) {
|
for (i = 0; i < server_limit; ++i) {
|
||||||
@ -1526,7 +1526,7 @@ static int hook_connection_early(conn_rec *conn)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, conn,
|
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, conn,
|
||||||
"ModSecurity: threads in READ: %ld of %ld, WRITE: %ld of %ld, IP: %s",
|
"ModSecurity: threads in READ: %ld of %ld, WRITE: %ld of %ld, IP: %s",
|
||||||
ip_count_r, conn_read_state_limit, ip_count_w, conn_write_state_limit, client_ip);
|
ip_count_r, conn_read_state_limit, ip_count_w, conn_write_state_limit, client_ip);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user