Details
-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
-
None
-
None
-
ch.qos.logback.access.tomcat.LogbackValve
Description
Currently in LogbackValve#invoke we have:
TomcatServerAdapter adapter = new TomcatServerAdapter(request, response); IAccessEvent accessEvent = new AccessEvent(request, response, adapter);
but it's useful to have possibility to customize TomcatServerAdapter, so it's helpful to move TomcatServerAdapter creation to a protected method so it will be possible to override TomcatServerAdapter creation.