You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2023/06/28 11:39:43 UTC

svn commit: r1910658 - /httpd/httpd/trunk/modules/http2/h2_request.c

Author: icing
Date: Wed Jun 28 11:39:43 2023
New Revision: 1910658

URL: http://svn.apache.org/viewvc?rev=1910658&view=rev
Log:
lognos for the new debugs


Modified:
    httpd/httpd/trunk/modules/http2/h2_request.c

Modified: httpd/httpd/trunk/modules/http2/h2_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_request.c?rev=1910658&r1=1910657&r2=1910658&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_request.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_request.c Wed Jun 28 11:39:43 2023
@@ -413,13 +413,13 @@ request_rec *h2_create_request_rec(const
     }
     else if (h2_config_cgeti(c, H2_CONF_PROXY_REQUESTS)) {
         if (!req->scheme) {
-            ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO()
+            ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(10468)
                           "H2ProxyRequests on, but request misses :scheme");
             access_status = HTTP_BAD_REQUEST;
             goto die;
         }
         if (!req->authority) {
-            ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO()
+            ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(10469)
                           "H2ProxyRequests on, but request misses :authority");
             access_status = HTTP_BAD_REQUEST;
             goto die;