【发布时间】:2019-05-17 11:37:53
【问题描述】:
public static void main(String[] arg)
{
LOGGER.config("");
}
我访问了很多网站,但我找不到确切的答案
【问题讨论】:
public static void main(String[] arg)
{
LOGGER.config("");
}
我访问了很多网站,但我找不到确切的答案
【问题讨论】:
来自java.util.logging.LevelJavadocs:
/**
* CONFIG is a message level for static configuration messages.
* <p>
* CONFIG messages are intended to provide a variety of static
* configuration information, to assist in debugging problems
* that may be associated with particular configurations.
* For example, CONFIG message might include the CPU type,
* the graphics depth, the GUI look-and-feel, etc.
* This level is initialized to <CODE>700</CODE>.
*/
public static final Level CONFIG = new Level("CONFIG", 700, defaultBundle);
就严重程度而言,它介于 INFO 和 FINE 之间。
【讨论】: