]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Synch trunk with 2.4.x.
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 5 Dec 2014 21:06:31 +0000 (21:06 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 5 Dec 2014 21:06:31 +0000 (21:06 +0000)
In r1588495, additionnal logging has been added to 2.4.x as part of the merge.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1643434 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_wstunnel.c

index 5028be9deb8aef88a776fe581f171189141fc0ab..636c5074fcc21dfd030da18f4578ae7ef21956ec 100644 (file)
@@ -303,9 +303,12 @@ static apr_status_t proxy_wstunnel_transfer(request_rec *r, conn_rec *c_i, conn_
         }
     } while (rv == APR_SUCCESS);
 
+    ap_log_rerror(APLOG_MARK, APLOG_TRACE2, rv, r, "wstunnel_transfer complete");
+
     if (APR_STATUS_IS_EAGAIN(rv)) {
         rv = APR_SUCCESS;
     }
+
     return rv;
 }