Logger setLevel() method in Java with Examples Last Updated : 26 Mar, 2019 Comments Improve Suggest changes Like Article Like Report setLevel() method of a Logger class used to set the log level to describe which message levels will be logged by this logger. The level we want to set is passed as a parameter. Message levels lower than passed log level value will be discarded by the logger. The level value Level.OFF can be used to turn off logging. Log Levels: The log levels control the logging details. They determine the extent to which depth the log files are generated. Each level is associated with a numeric value and there are 7 basic log levels and 2 special ones. We need to specify the desired level of logging every time, we seek to interact with the log system. To know more about Log Levels, refer this Log Levels in Logging. Syntax: public void setLevel(Level newLevel) throws SecurityException Parameters: This method accepts one parameter newLevel which represents the new value for the log level. Return value: This method returns nothing. Exception: This method throws SecurityException if a security manager exists, this logger is not anonymous, and the caller does not have LoggingPermission("control"). Below programs illustrate the setLevel() method: Program 1: Java // Java program to demonstrate // Logger.setLevel() method import java.util.logging.*; public class GFG { public static void main(String[] args) throws SecurityException { // Create a logger Logger logger = Logger.getLogger( GFG.class.getName()); // Set log levels logger.setLevel(Level.FINEST); // Print log level System.out.println("Log Level = " + logger.getLevel()); } } Output: The output printed on console of Eclipse is shown below- Program 2: Java // Java program to demonstrate // Logger.setLevel() method import java.util.logging.*; public class GFG { public static void main(String[] args) throws SecurityException { // Create a logger Logger logger = Logger.getLogger( GFG.class.getName()); // Set log levels logger.setLevel(Level.WARNING); // Print log level System.out.println("Log Level = " + logger.getLevel()); } } Output: The output printed on console output is shown below- Reference: https://docs.oracle.com/javase/10/docs/api/java/util/logging/Logger.html#setLevel(java.util.logging.Level) Comment More infoAdvertise with us Next Article Logger setLevel() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java - util package Java-Functions Java-Logger Practice Tags : Java Similar Reads LogRecord setLevel() method in Java with Examples The setLevel() method of java.util.logging.LogRecord is used to set the level of logging message, for example Level.INFO for this LogRecord Object. Syntax: public void setLevel(Level level) Parameters: This method accepts level which is the logging message level. Return: This method returns nothing. 1 min read Logger severe() method in Java with Examples The severe() method of a Logger class used to Log a SEVERE message.This method is used to pass SEVERE types logs to all the registered output Handler objects. SEVERE Message: Severe occurs when something terrible has occurred and the application cannot continue further. Ex like database unavailable, 2 min read Logger setFilter() method in Java with Examples setFilter() method of a Logger class is used to set a filter to control output on this Logger. The filter is passed as a parameter. A Filter is useful to filter out log messages. It can be said that the filter decides the message gets to be logged or not. Filters are represented by the Java interfac 2 min read Logger setParent() method in Java with Examples setParent() method of a Logger class used to set the parent Logger of this current Logger.The parent Logger we want to set is passed as a parameter. LogManager use this method to update a Logger when the namespace changes. Syntax: public void setParent(Logger parent) Parameters: This method accepts 2 min read LogManager reset() method in Java with Examples The reset() method of java.util.logging.LogManager is used to reset the logging configuration. This method throws SecurityException if the exception condition occurs, as given below Syntax: public void reset() throws SecurityException Parameters: This method does not accepts any parameter. Return Va 1 min read Like