Mailing List Archive

svn commit: r1893412 - in /httpd/test/framework/trunk/c-modules: echo_post/mod_echo_post.c test_pass_brigade/mod_test_pass_brigade.c test_rwrite/mod_test_rwrite.c
Author: ylavic
Date: Sat Sep 18 11:14:01 2021
New Revision: 1893412

URL: http://svn.apache.org/viewvc?rev=1893412&view=rev
Log:
c-modules: reduce to APLOG_TRACE2 for "each packet" logging.

Modified:
httpd/test/framework/trunk/c-modules/echo_post/mod_echo_post.c
httpd/test/framework/trunk/c-modules/test_pass_brigade/mod_test_pass_brigade.c
httpd/test/framework/trunk/c-modules/test_rwrite/mod_test_rwrite.c

Modified: httpd/test/framework/trunk/c-modules/echo_post/mod_echo_post.c
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/c-modules/echo_post/mod_echo_post.c?rev=1893412&r1=1893411&r2=1893412&view=diff
==============================================================================
--- httpd/test/framework/trunk/c-modules/echo_post/mod_echo_post.c (original)
+++ httpd/test/framework/trunk/c-modules/echo_post/mod_echo_post.c Sat Sep 18 11:14:01 2021
@@ -66,7 +66,7 @@ static int echo_post_handler(request_rec
"[mod_echo_post] read %ld bytes (wanted %d, remaining=%ld)",
nrd, sizeof(buff), r->remaining);
#else
- ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
+ ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r,
"[mod_echo_post] read %ld bytes (wanted %" APR_SIZE_T_FMT
", remaining=%" APR_OFF_T_FMT ")",
nrd, sizeof(buff), r->remaining);

Modified: httpd/test/framework/trunk/c-modules/test_pass_brigade/mod_test_pass_brigade.c
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/c-modules/test_pass_brigade/mod_test_pass_brigade.c?rev=1893412&r1=1893411&r2=1893412&view=diff
==============================================================================
--- httpd/test/framework/trunk/c-modules/test_pass_brigade/mod_test_pass_brigade.c (original)
+++ httpd/test/framework/trunk/c-modules/test_pass_brigade/mod_test_pass_brigade.c Sat Sep 18 11:14:01 2021
@@ -85,7 +85,7 @@ static int test_pass_brigade_handler(req

total += len;

- ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
+ ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r,
"[mod_test_pass_brigade] wrote %d of %d bytes",
len, len);
}

Modified: httpd/test/framework/trunk/c-modules/test_rwrite/mod_test_rwrite.c
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/c-modules/test_rwrite/mod_test_rwrite.c?rev=1893412&r1=1893411&r2=1893412&view=diff
==============================================================================
--- httpd/test/framework/trunk/c-modules/test_rwrite/mod_test_rwrite.c (original)
+++ httpd/test/framework/trunk/c-modules/test_rwrite/mod_test_rwrite.c Sat Sep 18 11:14:01 2021
@@ -49,7 +49,7 @@ static int test_rwrite_handler(request_r
long nrd = ap_rwrite(buff, len, r);
total += nrd;

- ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
+ ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r,
"[mod_test_rwrite] wrote %ld of %d bytes", nrd, len);
}