在输出中显示 FINE 日志级别
我怎样才能在java的输出屏幕中显示精细的日志消息?
how can i display the fine log message in output screen in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能在java的输出屏幕中显示精细的日志消息?
how can i display the fine log message in output screen in java?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能希望使用属性文件配置其他默认值。这允许重新配置而不需要重新编译。
我更喜欢这样做,而不是用日志配置调用来乱扔我的代码。
不过,您必须使用命令行选项指定文件的位置:
我个人总是使用 log4j 或 slf4j,因为它在类路径中查找配置文件。好吧,也许 java.util.logging 也这样做,我从未真正调查过。
You might want to configure other defaults with a properties file. This allow things to be reconfigured without recompiling.
I prefer this to littering my code with logging configuration calls.
You have to specify the location of the file with a command line option though :
I personally always use log4j or slf4j because it looks for a config file in the classpath. Well, maybe java.util.logging does that too, I never really investigated.