在java logger的配置文件中指定自己的Formatter
我通过扩展类java.util.logging.Formatter
编写了一个Formatter
(test.MyFormatter
);
现在我想使用 test.MyFormatter 而不是 java.util.logging.SimpleFormatter:
在配置文件中我替换了条目:
java.util.logging。 ConsoleHandler.formatter = java.util.logging.SimpleFormatter
与
java.util.logging.ConsoleHandler.formatter = test.MyFormatter
不幸的是,这不起作用。
有人可以解释我吗,如果我正在做的是:
- 正确
- 的话,为什么它不起作用?
I wrote a Formatter
(test.MyFormatter
) by extending the class java.util.logging.Formatter
;
Now I want to use test.MyFormatter
instead of java.util.logging.SimpleFormatter
:
in the configuration file i replaced the entry:
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
with
java.util.logging.ConsoleHandler.formatter = test.MyFormatter
unfortunately this is not working.
can somebody explain me, if what I am doing is:
- correct
- if yes, why it not working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 javadoc您的配置是正确的。
如果它不起作用,请仔细检查
test.MyFormatter
是否在您的类中路径
MyFormatter
是否具有不带参数的公共构造函数。According to the javadoc your configuration is correct.
If it is not working double check that
test.MyFormatter
is in your classpath
MyFormatter
has public constructor without parameters.您必须使用 LogManager 类。像这样的事情:
You have to override the default configuration using the LogManager class. Something like this: