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 490d56f33f71aef3dbcc30a388b99c95e6372a03 (commit)
from 385ba8afa57029a17e436b06b77e3dc1c4e79881 (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=490d56f33f71aef3dbcc30a388b99c95e6372a03
http://github.com/ceki/logback/commit/490d56f33f71aef3dbcc30a388b99c95e6372a03
commit 490d56f33f71aef3dbcc30a388b99c95e6372a03
Author: Pierre Queinnec <[email protected]>
Date: Thu Jul 21 03:35:40 2011 +0800
Remove two infinite loops in AccessConverter#addError methods.
diff --git
a/logback-access/src/main/java/ch/qos/logback/access/pattern/AccessConverter.java
b/logback-access/src/main/java/ch/qos/logback/access/pattern/AccessConverter.java
index bbb102d..c3c74db 100644
---
a/logback-access/src/main/java/ch/qos/logback/access/pattern/AccessConverter.java
+++
b/logback-access/src/main/java/ch/qos/logback/access/pattern/AccessConverter.java
@@ -57,11 +57,11 @@ abstract public class AccessConverter extends
DynamicConverter<IAccessEvent> imp
}
public void addError(String msg) {
- addError(msg);
+ cab.addError(msg);
}
public void addError(String msg, Throwable ex) {
- addError(msg, ex);
+ cab.addError(msg, ex);
}
}
-----------------------------------------------------------------------
Summary of changes:
.../logback/access/pattern/AccessConverter.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Logback: the generic, reliable, fast and flexible logging framework.
_______________________________________________
logback-dev mailing list
[email protected]
http://qos.ch/mailman/listinfo/logback-dev