我在用 :
log.info("Message");
输出为:
Jul 8, 2014 12:58:02 PM myclass main
INFO: message
我如何只打印不带日期和INFO的消息?
最佳答案
使用系统属性更改SimpleFormatter的格式:
-Djava.util.logging.SimpleFormatter.format="%2$s: %5$s%6$s%n"
或logging.properties中:
java.util.logging.SimpleFormatter.format=%2$s: %5$s%6$s%n
所有这些属性都记录在format方法中。