Thursday, October 16, 2025
HomeLanguagesJavaLogger getName() Method in Java with Examples

Logger getName() Method in Java with Examples

getName() method of a Logger class used to get the name of logger. Many times you have to check the logger name so we can use this method to get the logger name.

Syntax:

public String getName()

Parameters: This method accepts nothing.

Return value: This method return logger name and it will be null for anonymous Loggers.

Below programs illustrate the getName() method:
Program 1:




// Java program to demonstrate
// Logger.getName() method
  
import java.util.logging.*;
  
public class GFG {
  
    // Create a logger using getGLobal()
    static Logger logger1
        = Logger.getGlobal();
  
    // Create a logger using getLogger()
    static Logger logger2
        = Logger.getLogger("com.gfg");
  
    public static void main(String[] args)
    {
        System.out.println("logger1 name = "
                           + logger1.getName());
  
        System.out.println("logger2 name = "
                           + logger2.getName());
    }
}


Output:

logger1 name = global
logger2 name = com.gfg

Program 2:




// Java program to demonstrate
// Logger.getName() method
  
import java.util.logging.*;
  
public class GFG {
  
    // Create a logger using getLogger()
    static Logger logger
        = Logger.getLogger("com.gfg.logger.");
  
    public static void main(String[] args)
    {
  
        System.out.println("logger name = "
                           + logger.getName());
    }
}


Output:

logger name = com.gfg.logger.

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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS