Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Level getName() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The getName() method of java.util.logging.Level is used to get the non-localized string name of the Level. This method return name of this method.

Syntax:

public String getName()

Parameters: This method accepts nothing.

Return: This method returns non-localized name of this Level.

Below programs illustrate getName() method:
Program 1:




// Java program to illustrate getName() method
  
import java.util.logging.Level;
import java.util.logging.Logger;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a Logger
        Logger logger
            = Logger.getLogger(
                        Object.class.getName())
                  .getParent();
  
        // Get level of logger
        Level level
            = logger.getLevel();
  
        // get Level name
        String name = level.getName();
  
        // print level names
        System.out.println("Level Name = "
                           + name);
    }
}

Output:

Level Name = INFO

Program 2:




// Java program to illustrate getName() method
  
import java.util.logging.Level;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Get level of logger
        Level level
            = Level.parse("SEVERE");
  
        // get Level name
        String name = level.getName();
  
        // print level names
        System.out.println("Level Name = "
                           + name);
    }
}

Output:

Level Name = SEVERE

References: https://docs.oracle.com/javase/10/docs/api/java/util/logging/Level.html#getName()


My Personal Notes arrow_drop_up
Last Updated : 14 Oct, 2019
Like Article
Save Article
Similar Reads
Related Tutorials