Logger config() method in Java with Examples

The config() method of a Logger class used to Log an config message. This method is used to pass config types logs to all the registered output Handler objects.
Config Level: Configuration Information may be like what CPU the application is running on, how much is the disk and memory space.
There are two types of config() method depending upon the number of parameters passed.
- config(String msg): This method is used to log a CONFIG message. If the logger is enabled for logging CONFIG level message then the given message is forwarded to all the registered output Handler objects.
Syntax:
public void config(String msg)
Parameters: This method accepts a single parameter String which is the string message.
Return value: This method returns nothing.
Below programs illustrate config(String msg) method:
Program 1:
// Java program to demonstrate// Logger.config(String msg) methodimportjava.io.IOException;importjava.util.logging.*;publicclassGFG {publicstaticvoidmain(String[] args)throwsSecurityException, IOException{// Create a LoggerLogger logger= Logger.getLogger(GFG.class.getName());// Create a file handler objectFileHandler handler=newFileHandler("logs.txt");// Add file handler as// handler of logslogger.addHandler(handler);// Set Logger level()logger.setLevel(Level.CONFIG);// Call config methodlogger.config("Set Geeks=CODING");}}The output printed on logs.txt file is shown below.
Output:Program 2:
// Java program to demonstrate// Logger.config(String msg) methodimportjava.io.IOException;importjava.util.logging.*;publicclassGFG {publicstaticvoidmain(String[] args)throwsSecurityException, IOException{// Create a LoggerLogger logger= Logger.getLogger(GFG.class.getName());// Create a file handler objectFileHandler handler=newFileHandler("logs.txt");// Add file handler as// handler of logslogger.addHandler(handler);// Set Logger level()logger.setLevel(Level.CONFIG);// Call config methodlogger.config("This is config message 1");logger.config("This is config message 2");}}The output printed on logs.txt file is shown below.
Output: - config(Supplier msgSupplier): This method is used Log a CONFIG message, constructed only if the logging level is such that the message will actually be logged. It means If the logger is enabled for the CONFIG message level then the message is constructed by invoking the provided supplier function and forwarded to all the registered output Handler objects.
Syntax:
public void config(Supplier msgSupplier)
Parameters: This method accepts a single parameter msgSupplier which is a function, which when called, produces the desired log message.
Return value: This method returns nothing.
Below programs illustrate config(Supplier msgSupplier) method:
Program 1:
// Java program to demonstrate// Logger.config(Supplier<String>) methodimportjava.io.IOException;importjava.util.function.Supplier;importjava.util.logging.*;publicclassGFG {publicstaticvoidmain(String[] args)throwsSecurityException, IOException{// Create a LoggerLogger logger= Logger.getLogger(GFG.class.getName());// Create a file handler objectFileHandler handler=newFileHandler("logs.txt");// Add file handler as// handler of logslogger.addHandler(handler);// Set Logger level()logger.setLevel(Level.CONFIG);// Create a supplier<String> methodSupplier<String> StrSupplier= () ->newString("Welcome to GFG");// Call config(Supplier<String>)logger.config(StrSupplier);}}The output printed on log.txt is shown below.
Output:
References:




