
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 59e0cc914b973679bdba216a08b8cb0e42dbd406 (commit) from eeca3cce56c62bbda54d227e64ada15192e5fc27 (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=59e0cc914b973679bdba216a0... http://github.com/ceki/logback/commit/59e0cc914b973679bdba216a08b8cb0e42dbd4... commit 59e0cc914b973679bdba216a08b8cb0e42dbd406 Author: Ceki Gulcu <ceki@qos.ch> Date: Tue Nov 1 22:19:54 2011 +0100 added setter for 'resource' diff --git a/logback-access/src/main/java/ch/qos/logback/access/jetty/RequestLogImpl.java b/logback-access/src/main/java/ch/qos/logback/access/jetty/RequestLogImpl.java index 6066b4d..c2bb971 100644 --- a/logback-access/src/main/java/ch/qos/logback/access/jetty/RequestLogImpl.java +++ b/logback-access/src/main/java/ch/qos/logback/access/jetty/RequestLogImpl.java @@ -146,9 +146,6 @@ public class RequestLogImpl extends ContextBase implements RequestLog, getStatusManager().add(new InfoStatus(msg, this)); } -// private void addWarn(String msg) { -// getStatusManager().add(new WarnStatus(msg, this)); -// } private void addError(String msg) { getStatusManager().add(new ErrorStatus(msg, this)); } @@ -219,6 +216,10 @@ public class RequestLogImpl extends ContextBase implements RequestLog, this.fileName = fileName; } + public void setResource(String resource) { + this.resource = resource; + } + public boolean isStarted() { return started; } ----------------------------------------------------------------------- Summary of changes: .../qos/logback/access/jetty/RequestLogImpl.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework.