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 58de50e302d443c0d9d0d9a8e2fbcadba14f5391 (commit) from a2f83e8c0a4779f37c893ac5ad503a3e79f9ae69 (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=58de50e302d443c0d9d0d9a8e2fbcadba14f5391 http://github.com/ceki/logback/commit/58de50e302d443c0d9d0d9a8e2fbcadba14f5391 commit 58de50e302d443c0d9d0d9a8e2fbcadba14f5391 Author: Ceki Gulcu <c...@qos.ch> Date: Tue Nov 8 13:41:30 2011 +0100 fix compiler error diff --git a/logback-classic/src/main/java/ch/qos/logback/classic/Logger.java b/logback-classic/src/main/java/ch/qos/logback/classic/Logger.java index 500a9d3..f20c90b 100644 --- a/logback-classic/src/main/java/ch/qos/logback/classic/Logger.java +++ b/logback-classic/src/main/java/ch/qos/logback/classic/Logger.java @@ -820,8 +820,7 @@ public final class Logger implements org.slf4j.Logger, LocationAwareLogger, public void log(Marker marker, String fqcn, int levelInt, String message, Object[] argArray, Throwable t) { - Level level = null; - level = Level.locationAwareLoggerIntegerToLevel(levelInt); + Level level = Level.fromLocationAwareLoggerInteger(levelInt); filterAndLog_0_Or3Plus(fqcn, marker, level, message, argArray, t); } ----------------------------------------------------------------------- Summary of changes: .../main/java/ch/qos/logback/classic/Logger.java | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework. _______________________________________________ logback-dev mailing list logback-dev@qos.ch http://mailman.qos.ch/mailman/listinfo/logback-dev