首页 > 编程语言 > 详细

Java Logging: Filters

时间:2015-06-16 01:18:23      阅读:142      评论:0      收藏:0      [点我收藏+]

 

You can set a Filter on a Logger. A Filter can filter out log messages, meaning decide if the message gets logged or not. Filters are represented by the Java interface java.util.logging.Filter

Here is an example of setting a Filter on a Logger:

Filter filter = new MyFilter();

logger1.setFilter(filter);

The Filter interface is defined like this:

public interface Filter {
    public boolean isLoggable(LogRecord record);
}

If the isLoggable() method returns false, the LogRecord is not logged. If the method returns true, theLogRecord is forwarded to the Handler‘s of the given Logger.

To create a Filter you must implement that interface. Here is a very simple example implementation:

public class MyFilter implements Filter {
    public boolean isLoggable(LogRecord record) {
        return false;
    }
}

This filter rejects all messages. Of course this is not a very useful filter. You would probably inspect the LogRecordand make a decision based on that. You can learn more about the LogRecord in the text on the LogRecord, and in the JavaDoc too.

For a discussion of how Filter‘s work within the Logger hierarchy, see the text on the Logger hierarchy.

 

Java Logging: Filters

原文:http://www.cnblogs.com/hephec/p/4579626.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!