Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/361.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/logging/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 何时使用';配置';测井水平_Java_Logging - Fatal编程技术网

Java 何时使用';配置';测井水平

Java 何时使用';配置';测井水平,java,logging,Java,Logging,我访问了许多网站,但从java.util.logging.LevelJavadocs中找不到确切的答案: public static void main(String[] arg) { LOGGER.config(""); } 就严重性而言,它介于信息和罚款之间 /** * CONFIG is a message level for static configuration messages. * <p> * CONFIG messages are intended

我访问了许多网站,但从
java.util.logging.Level
Javadocs中找不到确切的答案:

public static void main(String[] arg)
{
     LOGGER.config("");
}
就严重性而言,它介于信息和罚款之间

/**
 * 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);