Friday, December 12, 2025
HomeLanguagesJavaLogManager reset() method in Java with Examples

LogManager reset() method in Java with Examples

The reset() method of java.util.logging.LogManager is used to reset the logging configuration. This method throws SecurityException if the exception condition occurs, as given below

Syntax:

public void reset() throws SecurityException

Parameters: This method does not accepts any parameter.

Return Value: This method does not return anything. It just resets the logging configuration.

Exceptions: This method throws following exceptions:

  • SecurityException: if a security manager exists while the caller does not have logging permissions.

Below programs illustrate reset() method:




// Java program to illustrate
// LogManager reset() method
  
import java.util.logging.*;
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        try {
            // Create LogManager object
            LogManager logManager
                = LogManager.getLogManager();
  
            System.out.println("LogManager: "
                               + logManager);
  
            System.out.println("Resetting the logging configuration");
  
            // Resetting the logging configuration
            // using reset() method
            logManager.reset();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

LogManager: java.util.logging.LogManager@1540e19d
Resetting the logging configuration
java.security.AccessControlException:
 access denied ("java.util.logging.LoggingPermission" "control")

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/logging/LogManager.html#reset–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32445 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12029 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6893 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS