diff options
author | Bryce McKinlay <mckinlay@redhat.com> | 2004-08-18 15:51:47 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2004-08-18 16:51:47 +0100 |
commit | b4b3435ecce4606416949432e6c5454b3b174c37 (patch) | |
tree | 82fef513566d7f1ad421557864015cd4cb79c152 /libjava/java | |
parent | 720086cd84423764cfced1dc16b74821a9c3f3b1 (diff) | |
download | gcc-b4b3435ecce4606416949432e6c5454b3b174c37.zip gcc-b4b3435ecce4606416949432e6c5454b3b174c37.tar.gz gcc-b4b3435ecce4606416949432e6c5454b3b174c37.tar.bz2 |
re PR libgcj/17079 ([PATCH] Log messages whose logging level is equal to the threshold discarded by java.util.logging.Handler)
2004-08-18 Bryce McKinlay <mckinlay@redhat.com>
PR libgcj/17079
* java/util/logging/Handler.java (isLoggable): Accept record if its
log level equals the threshold level. From Robin Green.
From-SVN: r86187
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/util/logging/Handler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/util/logging/Handler.java b/libjava/java/util/logging/Handler.java index f74ed0e..0caeafb 100644 --- a/libjava/java/util/logging/Handler.java +++ b/libjava/java/util/logging/Handler.java @@ -378,7 +378,7 @@ h.setFormatter(h.getFormatter());</pre> */ public boolean isLoggable(LogRecord record) { - if (record.getLevel().intValue() <= level.intValue()) + if (record.getLevel().intValue() < level.intValue()) return false; if (filter != null) |