码迷,mamicode.com
首页 > 编程语言 > 详细

Java Logging: Filters

时间:2015-06-16 01:18:29      阅读:191      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!