Open In App

Logger isLoggable() method in Java with Examples

Last Updated : 26 Mar, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

isLoggable() method of a Logger class is used to return a response in boolean value which provides an answer to the query that if a message of the given level would actually be logged by this logger or not. This check is based on the Loggers effective level, which may be inherited from its parent.

Syntax:

public boolean isLoggable(Level level)

Parameters: This method accepts one parameter level which represents message logging level.

Return value: This method returns true if the given message level is currently being logged.

Below programs illustrate the isLoggable() method:

Program 1:




// Java program to demonstrate
// Logger.isLoggable() method
  
import java.util.logging.*;
  
public class GFG {
  
    private static Logger logger
        = Logger.getLogger(
            GFG.class.getName());
  
    public static void main(String args[])
    {
  
        // Check if the Level.INFO
        // is currently being logged.
        boolean flag
            = logger.isLoggable(
                Level.INFO);
  
        // Print value
        System.out.println("The Level.INFO"
                           + " is currently being logged - "
                           + flag);
    }
}


Output:

The Level.INFO is currently being logged - true

Program 2:




// Java program to demonstrate
// Logger.isLoggable() method
  
import java.util.logging.*;
  
public class GFG {
  
    private static Logger logger
        = Logger.getLogger(
            GFG.class.getName());
  
    public static void main(String args[])
    {
  
        // Check if the Level.OFF
        // is currently being logged.
        boolean flag
            = logger.isLoggable(Level.OFF);
  
        // Print value
        System.out.println("The Level.OFF"
                           + " is currently being logged - "
                           + flag);
    }
}


Output:

The Level.OFF is currently being logged - true

Reference: https://docs.oracle.com/javase/10/docs/api/java/util/logging/Logger.html#isLoggable(java.util.logging.Level)



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads