Uses of Class java.util.logging.Level

Uses in package java.util.logging

Constructors with parameter type java.util.logging.Level

LogRecord.LogRecord(Level level, String message)
Constructs a LogRecord given a severity level and an unlocalized message text.
MemoryHandler.MemoryHandler(Handler target, int size, Level pushLevel)
Constructs a MemoryHandler for keeping a circular buffer of LogRecords, given some parameters.

Fields of type java.util.logging.Level

Level
The ALL level is used as a threshold for filtering log records, meaning that every message should be logged.
Level
Log records whose level is CONFIG are used for describing the static configuration, for example the windowing environment, the operating system version, etc.
Level
Log records whose level is FINE are typically used for messages that are relevant for developers using the component generating log messages.
Level
Log records whose level is FINER are intended for rather detailed tracing, for example entering a method, returning from a method, or throwing an exception.
Level
Log records whose level is FINEST are used for highly detailed tracing, for example to indicate that a certain point inside the body of a method has been reached.
Level
Log records whose level is INFO are used in purely informational situations that do not constitute serious errors or potential problems.
Level
The OFF level is used as a threshold for filtering log records, meaning that no message should be logged.
Level
Log records whose level is SEVERE indicate a serious failure that prevents normal program execution.
Level
Log records whose level is WARNING indicate a potential problem that does not prevent normal program execution.

Methods with parameter type java.util.logging.Level

boolean
Returns whether or not a message of the specified level would be logged by this logger.
void
Logger.log(Level level, String message)
void
Logger.log(Level level, String message, Object param)
void
Logger.log(Level level, String message, Object[] params)
void
Logger.log(Level level, String message, Throwable thrown)
void
Logger.logp(Level level, String sourceClass, String sourceMethod, String message)
void
Logger.logp(Level level, String sourceClass, String sourceMethod, String message, Object param)
void
Logger.logp(Level level, String sourceClass, String sourceMethod, String message, Object[] params)
void
Logger.logp(Level level, String sourceClass, String sourceMethod, String message, Throwable thrown)
void
Logger.logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String message)
void
Logger.logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String message, Object param)
void
Logger.logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String message, Object[] params)
void
Logger.logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String message, Throwable thrown)
void
Sets the severity level threshold for this Handler.
void
Sets the severity level threshold for this Handler.
void
Sets the severity level of this LogRecord to a new value.
void
Sets the push level threshold for this Handler.

Methods with return type java.util.logging.Level

Level
Returns the severity level threshold for this Handler All log records with a lower severity level will be discarded; a log record of the same or a higher level will be published unless an installed Filter decides to discard it.
Level
Returns the severity level threshold for this Handler.
Level
Returns the level of the LogRecord.
Level
Returns the push level threshold for this Handler.
Level
Returns one of the standard Levels given either its name or its integer value.