4

我正在使用java.util.logging日志记录(我不想使用 log4j 或其他任何东西)。

这是我完整的私人 logging.properties:

handlers= java.util.logging.FileHandler
.level= INFO
java.util.logging.FileHandler.pattern = my.log
java.util.logging.FileHandler.limit = 500000
java.util.logging.FileHandler.count = 40
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter

这是我程序中的代码:

public static Logger log = Logger.getLogger(MyClass.class.getName());
// Is there anything else to be init'ed here? 
// I don't. I just start using log directly in the code.

log.severe("something");
log.info("something else");

因为这在 2 行上给出了每条日志消息,所以我尝试了这个

如何让 java 日志输出显示在一行上?

准确地复制了第一个回复中的 LogFormatter 类。

在我的 logging.properties 中更改了一行

java.util.logging.FileHandler.formatter = com.mycomp.myproj.LogFormatter;

现在我的日志已经开始出现在 XML 中。我有一种强烈的感觉,FileHandler不喜欢我的com.mycomp.myproj.LogFormatter,因此默认为 default XMLFormatter。我如何弄清楚为什么FileHandler不使用我的 LogFormatter 类?

4

6 回答 6

5

How do I figure out why FileHandler isn't using my LogFormatter class?

Start the program in a debugger and step through the code. Set a breakpoint in LogManager.getLogger() and/or LogManager.readConfiguration()

Or forget about java.util.logging and use a framework like logback that is easy to configure and gives you useful error messages when something is wrong.

于 2013-04-16T14:37:34.040 回答
5

您可以在 FileHandler 实例上的代码本身中设置格式化程序。

import java.util.logging.FileHandler;
import java.util.logging.Level;
import java.util.logging.Logger;

// please change name of your own choice
Logger log = Logger.getLogger("CustomLogger"); 
log.setUseParentHandlers(false);
log.setLevel(Level.ALL);

FileHandler handler = new FileHandler("[log_file_location]");
handler.setFormatter(new CustomFormatter()); // set formatter
log.addHandler(handler);

log.info("test message");

handler.close(); // close the handler at some later point in your application.

CustomFormatter 类定义如下。

import java.util.logging.Formatter;
import java.util.logging.LogRecord;

public class CustomFormatter extends Formatter {

    @Override
    public String format(LogRecord record) {
        StringBuffer buffer = new StringBuffer();
        buffer.append(record.getMessage());
        return buffer.toString();
    }

}

您可以在 CustomFormatter 中编码,以您想要的任何格式输出消息。希望这可以帮助。

于 2013-04-18T23:41:26.613 回答
2

好吧,这也让我很生气,让我发疯,我不停地检查拼写,做谷歌搜索等——这就是我到这里的方式——我知道这已经一岁了,但你会踢自己。我很确定这是您的答案。

为了 :

java.util.logging.FileHandler.formatter = com.mycomp.myproj.LogFormatter;

那应该是:

java.util.logging.FileHandler.formatter = com.mycomp.myproj.LogFormatter

删除训练“;”。它似乎需要与我看到其他人抱怨他们有尾随空格字符的类名完全匹配——这就是我的问题所在。更好的错误消息会有所帮助。

干杯 - 马克

于 2014-08-27T13:18:20.913 回答
1

com.mycomp.myproj.LogFormatter 不在您的系统类路径中。

LogManager 将执行以下调用来加载您的类:

Formatter getFormatterProperty(String name, Formatter defaultValue) {
        String val = getProperty(name);
        try {
            if (val != null) {
                Class<?> clz = ClassLoader.getSystemClassLoader().loadClass(val);
                return (Formatter) clz.newInstance();
            }
        } catch (Exception ex) {
            // We got one of a variety of exceptions in creating the
            // class or creating an instance.
            // Drop through.
        }
        // We got an exception.  Return the defaultValue.
        return defaultValue;
}

您需要确保您的类 LogFormatter 在系统的类路径中。

于 2015-12-31T13:53:47.367 回答
0

我发现除非您通过配置设置格式,否则它不会应用格式化程序。我在 JDK 11 上对此进行了测试。

handlers= java.util.logging.FileHandler
.level= INFO
java.util.logging.FileHandler.pattern = my.log
java.util.logging.FileHandler.limit = 500000
java.util.logging.FileHandler.count = 40
java.util.logging.FileHandler.formatter = com.mycomp.myproj.LogFormatter
com.mycomp.myproj.LogFormatter.format = %n

即添加最后一行com.mycomp.myproj.LogFormatter.format = %n

于 2018-12-13T09:49:56.747 回答
0

可能这在这一点上无关紧要,但最近我发现了一个问题,格式中的$给我带来了问题,它无法解析并回退到默认格式。本来我有

[%1$tF %1$tT] [%4$-7s] %5$s %n

logging.properties文件中没有按预期工作,但是

[%1\$tF %1\$tT] [%4\$-7s] %5\$s %n

这与\$. 将来可能会对其他人有所帮助。

于 2022-02-18T12:32:07.953 回答