Handler.java (isLoggable): Check record level smaller or equal.
2003-07-18 Mark Wielaard <mark@klomp.org> * java/util/logging/Handler.java (isLoggable): Check record level smaller or equal. From-SVN: r69563
This commit is contained in:
parent
2ee1067b6b
commit
c26052b06b
@ -1,3 +1,8 @@
|
||||
2003-07-18 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/util/logging/Handler.java (isLoggable): Check record level
|
||||
smaller or equal.
|
||||
|
||||
2003-07-17 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/awt/peer/gtk/GtkToolkit.java:
|
||||
|
@ -379,7 +379,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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user