- Level - Class in java.util.logging
-
Level defines a set of standard logging levels.
- Level(String, int) - Constructor for class java.util.logging.Level
-
Creates a named Level with the given integer value.
- log(Level, String) - Method in class java.util.logging.Logger
-
Log a message, with no arguments.
- log(Level, String, Throwable) - Method in class java.util.logging.Logger
-
Log a message, with an associated throwable object.
- log(LogRecord) - Method in class java.util.logging.Logger
-
Log a LogRecord.
- Logger - Class in java.util.logging
-
A Logger is used to log messages.
- Logger(String, String) - Constructor for class java.util.logging.Logger
-
Protected method to create a logger.
- LogManager - Class in java.util.logging
-
- LogManager() - Constructor for class java.util.logging.LogManager
-
Protected constructor.
- LogRecord - Class in java.util.logging
-
LogRecord objects are used to pass logging requests between the logging framework and individual log Handlers.
- LogRecord(Level, String) - Constructor for class java.util.logging.LogRecord
-
Construct a LogRecord with the given level and message.