[GIT] Logback: the generic, reliable, fast and flexible logging framework. branch, master, updated. v_0.9.23-1-g221874c

This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Logback: the generic, reliable, fast and flexible logging framework.". The branch, master has been updated via 221874c02ece52940b244c2794d934d92b669658 (commit) from f8c4d4ca4162fc0bdd311db2508ba58be7c0d3ba (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=221874c02ece52940b244c279... http://github.com/ceki/logback/commit/221874c02ece52940b244c2794d934d92b6696... commit 221874c02ece52940b244c2794d934d92b669658 Author: Ceki Gulcu <ceki@qos.ch> Date: Tue Jun 29 19:51:16 2010 +0200 starting work on 0.9.24 diff --git a/logback-access/pom.xml b/logback-access/pom.xml index 12427fc..02c95cc 100644 --- a/logback-access/pom.xml +++ b/logback-access/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-classic/pom.xml b/logback-classic/pom.xml index 26472d2..02d14f4 100644 --- a/logback-classic/pom.xml +++ b/logback-classic/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-classic/src/main/java/ch/qos/logback/classic/helpers/MDCInsertingServletFilter.java b/logback-classic/src/main/java/ch/qos/logback/classic/helpers/MDCInsertingServletFilter.java index ce2d74f..280086a 100644 --- a/logback-classic/src/main/java/ch/qos/logback/classic/helpers/MDCInsertingServletFilter.java +++ b/logback-classic/src/main/java/ch/qos/logback/classic/helpers/MDCInsertingServletFilter.java @@ -45,22 +45,28 @@ public class MDCInsertingServletFilter implements Filter { public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { + insertIntoMDC(request); try { chain.doFilter(request, response); } finally { + System.out.println("*********** clearMDC()"); clearMDC(); } } void insertIntoMDC(ServletRequest request) { + MDC.put(ClassicConstants.REQUEST_REMOTE_HOST_MDC_KEY, request .getRemoteHost()); if (request instanceof HttpServletRequest) { HttpServletRequest httpServletRequest = (HttpServletRequest) request; + + System.out.println("Inserting into MDC "+httpServletRequest.getRequestURL()); + MDC.put(ClassicConstants.REQUEST_REQUEST_URI, httpServletRequest .getRequestURI()); StringBuffer requestURL = httpServletRequest.getRequestURL(); diff --git a/logback-core/pom.xml b/logback-core/pom.xml index b773910..60fdd36 100644 --- a/logback-core/pom.xml +++ b/logback-core/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-examples/pom.xml b/logback-examples/pom.xml index 04ecc5f..5e603e6 100644 --- a/logback-examples/pom.xml +++ b/logback-examples/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-site/pom.xml b/logback-site/pom.xml index 7fb8f5b..6fea3a7 100644 --- a/logback-site/pom.xml +++ b/logback-site/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/pom.xml b/pom.xml index 508b5f3..217b304 100755 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.23</version> + <version>0.9.24-SNAPSHOT</version> <packaging>pom</packaging> <name>Logback-Parent</name> ----------------------------------------------------------------------- Summary of changes: logback-access/pom.xml | 2 +- logback-classic/pom.xml | 2 +- .../classic/helpers/MDCInsertingServletFilter.java | 6 ++++++ logback-core/pom.xml | 2 +- logback-examples/pom.xml | 2 +- logback-site/pom.xml | 2 +- pom.xml | 2 +- 7 files changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.
participants (1)
-
git-noreply@pixie.qos.ch