Setting the Log Level of a Logger : Log Level « Log « Java Tutorial






import java.util.logging.Level;
import java.util.logging.Logger;

public class Main {
  public static void main(String[] argv) throws Exception {
    // Get a logger
    Logger logger = Logger.getLogger("com.mycompany");

    // Set the level to a particular level
    logger.setLevel(Level.INFO);

    // Set the level to that of its parent
    logger.setLevel(null);

    // Turn off all logging
    logger.setLevel(Level.OFF);

    // Turn on all logging
    logger.setLevel(Level.ALL);
  }
}








35.2.Log Level
35.2.1.Use different logging level
35.2.2.Setting the Log Level of a Logger
35.2.3.Getting the Log Level of a Logger
35.2.4.Creating a Custom Log Level
35.2.5.Log finest, finer, config, warning ans severe
35.2.6.Determining If a Message Will Be Logged
35.2.7.Comparing Log Levels: To compare the severity of two logging levels, use Level.intValue().