Logger finer() method in Java with Examples Last Updated : 26 Mar, 2019 Comments Improve Suggest changes Like Article Like Report The finer() method of a Logger class used to Log an FINER message.This method is used to pass FINER types logs to all the registered output Handler objects. FINER message: FINER outputs a detailed tracing message and may include logging calls regarding method entering, exiting, throwing exceptions. There are two types of finer() method depending upon the number of parameters passed. finer(String msg): This method is used to log a FINER message.If the logger is enabled for logging FINER level message then the given message is forwarded to all the registered output Handler objects. Syntax: public void finer(String msg) Parameters: This method accepts a single parameter String which is the string message. Return value: This method returns nothing. Below programs illustrate finer(String msg) method: Program 1: Java // Java program to demonstrate // Logger.finer(String msg) method import java.io.IOException; import java.util.logging.*; public class GFG { public static void main(String[] args) throws SecurityException, IOException { // Create a Logger Logger logger = Logger.getLogger( GFG.class.getName()); // Create a file handler object FileHandler handler = new FileHandler("logs.txt"); handler.setFormatter(new SimpleFormatter()); // Add file handler as // handler of logs logger.addHandler(handler); // Set Logger level() logger.setLevel(Level.FINER); // Call finer method logger.finer("Welcome geeks"); } } The output printed on logs.txt file is shown below. Output: finer(Supplier msgSupplier): This method is used Log a FINER 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 FINER 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 finer(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 finer(Supplier msgSupplier) method: Program 1: Java // Java program to demonstrate // Logger.finer(Supplier<String>) method import java.io.IOException; import java.util.function.Supplier; import java.util.logging.*; public class GFG { public static void main(String[] args) throws SecurityException, IOException { // Create a Logger Logger logger = Logger.getLogger( GFG.class.getName()); // Create a file handler object FileHandler handler = new FileHandler("logs.txt"); handler.setFormatter( new SimpleFormatter()); // Add file handler as // handler of logs logger.addHandler(handler); // Set Logger level() logger.setLevel(Level.FINER); // Create a supplier<String> method Supplier<String> StrSupplier = () -> new String("SET KEY=VALUE"); // Call finer(Supplier<String>) logger.finer(StrSupplier); } } The output printed on log.txt is shown below. Output: References: https://docs.oracle.com/javase/10/docs/api/java/util/logging/Logger.html#finer(java.lang.String) https://docs.oracle.com/javase/10/docs/api/java/util/logging/Logger.html#finer(java.util.function.Supplier) Comment More infoAdvertise with us Next Article Logger finer() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java - util package Java-Functions Java-Logger Practice Tags : Java Similar Reads Logger fine() method in Java with Examples The fine() method of a Logger class used to Log a FINE message. This method is used to pass FINE types logs to all the registered output Handler objects. FINE, FINER and FINEST provide tracking information as when what is happening/ has happened in our application. FINE displays the most important m 3 min read Logger finest() method in Java with Examples The finest() method of a Logger class used to Log an FINEST message.This method is used to pass FINEST types logs to all the registered output Handler objects. FINEST message: FINEST provides highly detailed tracing message. There are two types of finest() method depending upon the number of the par 3 min read Logger getFilter() Method in Java with Examples The getFilter() method of the Logger class is used to get the current filter for this Logger instance. A Filter is useful to filter out log messages. we can say that filter decide the message gets logged or not. Filters are represented by the Java interface java.util.logging.Filter Syntax: public Fi 2 min read Logger exiting() method in Java with Examples The exiting() method of a Logger class used to Log a method return. There are two types of exiting() method depending upon the parameters passed. exiting(String sourceClass, String sourceMethod): This method is used to Log a method return. we need to log what method returns and this is a convenience 3 min read Logger log() Method in Java with Examples The log() method of Logger is used to Log a message. If the logger is currently enabled for the given message level which is passed as parameter then a corresponding LogRecord is created and forwarded to all the registered Output Handler objects. But in logger class, there are seven different log() 6 min read Like