Open In App

Level getLocalizedName() method in Java with Examples

Last Updated : 14 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The getLocalizedName() method of java.util.logging.Level is used to get the localized string name of the Level.This method returns localized name, for the current default locale. If no localization information is available, the non-localized name is returned.

Syntax:

public String getLocalizedName()

Parameters: This method accepts nothing.

Return: This method returns localized name of this Level.

Below programs illustrate getLocalizedName() method:
Program 1:




// Java program to illustrate
// getLocalizedName() 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 localized name
        String name = level.getLocalizedName();
  
        // print level localized name
        System.out.println("Localized Name = "
                           + name);
    }
}


Output:

Localized Name = INFO

Program 2:




// Java program to illustrate
// getLocalizedName() 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 Localized name
        String name = level.getLocalizedName();
  
        // print level names
        System.out.println("Localized Name = "
                           + name);
    }
}


Output:

Localized Name = SEVERE

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



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads