[GIT] SLF4J: Simple Logging Facade for Java branch, master, updated. v_1.6.2-2-g98af61a

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 "SLF4J: Simple Logging Facade for Java". The branch, master has been updated via 98af61a76ecf4a5ba04d3877267c9f33d477ee30 (commit) from 13dddd52b72ac1c3bd2971d5c30a6f66cfae47ca (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=slf4j.git;a=commit;h=98af61a76ecf4a5ba04d3877267... http://github.com/ceki/slf4j/commit/98af61a76ecf4a5ba04d3877267c9f33d477ee30 commit 98af61a76ecf4a5ba04d3877267c9f33d477ee30 Author: Ceki Gulcu <ceki@qos.ch> Date: Wed Sep 28 20:01:45 2011 +0200 fixes bug 246 diff --git a/slf4j-ext/src/main/java/org/slf4j/ext/EventLogger.java b/slf4j-ext/src/main/java/org/slf4j/ext/EventLogger.java index 2f77c1b..9fba219 100755 --- a/slf4j-ext/src/main/java/org/slf4j/ext/EventLogger.java +++ b/slf4j-ext/src/main/java/org/slf4j/ext/EventLogger.java @@ -34,7 +34,7 @@ public class EventLogger { public static void logEvent(EventData data) { if (eventLogger.instanceofLAL) { ((LocationAwareLogger) eventLogger.logger).log(EVENT_MARKER, FQCN, - LocationAwareLogger.INFO_INT, data.toXML(), null, null); + LocationAwareLogger.INFO_INT, data.toXML(), new Object[] {data}, null); } else { eventLogger.logger.info(EVENT_MARKER, data.toXML(), data); } diff --git a/slf4j-site/src/site/pages/news.html b/slf4j-site/src/site/pages/news.html index acb6f1c..99ddd76 100644 --- a/slf4j-site/src/site/pages/news.html +++ b/slf4j-site/src/site/pages/news.html @@ -29,8 +29,16 @@ <hr noshade="noshade" size="1"/> - <h3>August 19th, 2011 - Release of SLF4J 1.6.2</h3> + <h3>???, 2011 - Release of SLF4J 1.6.3</h3> + + <p><code>LogEvent</code> class in slf4j-ext module now correctly + passes the event data as a parameter object. This fixes <a + href="http://bugzilla.slf4j.org/show_bug.cgi?id=246">bug #246</a> + reported by Ralph Goers. + </p> + + <h3>August 19th, 2011 - Release of SLF4J 1.6.2</h3> <p>Fixed <a href="http://bugzilla.slf4j.org/show_bug.cgi?id=138">bug ----------------------------------------------------------------------- Summary of changes: .../src/main/java/org/slf4j/ext/EventLogger.java | 2 +- slf4j-site/src/site/pages/news.html | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) hooks/post-receive -- SLF4J: Simple Logging Facade for Java
participants (1)
-
git-noreply@pixie.qos.ch