[logback-dev] [GIT] Logback: the generic, reliable, fast and flexible logging framework. branch, master, updated. v_0.9.25-13-g268a8ff

added by portage for gitosis-gentoo git-noreply at pixie.qos.ch
Wed Oct 20 22:17:55 CEST 2010


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  268a8ffc8d2f7752ba3013af582679dbc3c12a86 (commit)
      from  358ca5f91a5deae9bde0a8ef34bc39d682d6b346 (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=268a8ffc8d2f7752ba3013af582679dbc3c12a86
http://github.com/ceki/logback/commit/268a8ffc8d2f7752ba3013af582679dbc3c12a86

commit 268a8ffc8d2f7752ba3013af582679dbc3c12a86
Author: Ceki Gulcu <ceki at qos.ch>
Date:   Wed Oct 20 22:16:46 2010 +0200

    Fix LBCLASSIC-226

diff --git a/logback-classic/src/main/java/ch/qos/logback/classic/jul/JULHelper.java b/logback-classic/src/main/java/ch/qos/logback/classic/jul/JULHelper.java
index 05d52bb..28c78bb 100644
--- a/logback-classic/src/main/java/ch/qos/logback/classic/jul/JULHelper.java
+++ b/logback-classic/src/main/java/ch/qos/logback/classic/jul/JULHelper.java
@@ -20,6 +20,8 @@ public class JULHelper {
 
   static public java.util.logging.Level asJULLevel(Level lbLevel) {
     switch (lbLevel.levelInt) {
+      case Level.ALL_INT:
+        return java.util.logging.Level.ALL;
       case Level.TRACE_INT:
         return java.util.logging.Level.FINEST;
       case Level.DEBUG_INT:
@@ -30,6 +32,8 @@ public class JULHelper {
         return java.util.logging.Level.WARNING;
       case Level.ERROR_INT:
         return java.util.logging.Level.SEVERE;
+      case Level.OFF_INT:
+        return java.util.logging.Level.OFF;
       default:
         throw new IllegalArgumentException("Unexpected level [" + lbLevel + "]");
     }

-----------------------------------------------------------------------

Summary of changes:
 .../java/ch/qos/logback/classic/jul/JULHelper.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Logback: the generic, reliable, fast and flexible logging framework.


More information about the logback-dev mailing list