Uses of Class
java.util.logging.Level
| Package | Description |
|---|---|
| dalvik.system | |
| java.util.logging | |
| org.apache.commons.logging.impl |
Concrete implementations of commons-logging wrapper APIs.
|
-
Uses of Level in dalvik.system
-
Uses of Level in java.util.logging
Fields in java.util.logging declared as Level Modifier and Type Field Description static LevelLevel. ALLThe ALL level provides all logging messages.static LevelLevel. CONFIGThe CONFIG level provides static configuration messages.static LevelLevel. FINEThe FINE level provides tracing messages.static LevelLevel. FINERThe FINER level provides more detailed tracing messages.static LevelLevel. FINESTThe FINEST level provides highly detailed tracing messages.static LevelLevel. INFOThe INFO level provides informative messages.static LevelLevel. OFFThe OFF level provides no logging messages.static LevelLevel. SEVEREThe SEVERE level provides severe failure messages.static LevelLevel. WARNINGThe WARNING level provides warnings.Methods in java.util.logging that return Level Modifier and Type Method Description LevelHandler. getLevel()Gets the logging level of this handler, records with levels lower than this value will be dropped.LevelLogger. getLevel()Gets the logging level of this logger.LevelLogRecord. getLevel()Gets the logging level.LevelMemoryHandler. getPushLevel()Return the push level.static LevelLevel. parse(String name)Parses a level name into aLevelobject.Methods in java.util.logging with parameters of type Level Modifier and Type Method Description booleanLogger. isLoggable(Level l)Determines whether this logger will actually log messages of the specified level.voidLogger. log(Level logLevel, String msg)Logs a message of the specified level.voidLogger. log(Level logLevel, String msg, Object param)Logs a message of the specified level with the supplied parameter.voidLogger. log(Level logLevel, String msg, Object[] params)Logs a message of the specified level with the supplied parameter array.voidLogger. log(Level logLevel, String msg, Throwable thrown)Logs a message of the specified level with the suppliedThrowableobject.voidLogger. logp(Level logLevel, String sourceClass, String sourceMethod, String msg)Logs a message of the given level with the specified source class name and source method name.voidLogger. logp(Level logLevel, String sourceClass, String sourceMethod, String msg, Object param)Logs a message of the given level with the specified source class name, source method name and parameter.voidLogger. logp(Level logLevel, String sourceClass, String sourceMethod, String msg, Object[] params)Logs a message of the given level with the specified source class name, source method name and parameter array.voidLogger. logp(Level logLevel, String sourceClass, String sourceMethod, String msg, Throwable thrown)Logs a message of the given level with the specified source class name, source method name andThrowableobject.voidLogger. logrb(Level logLevel, String sourceClass, String sourceMethod, String bundleName, String msg)Logs a message of the given level with the specified source class name and source method name, using the given resource bundle to localize the message.voidLogger. logrb(Level logLevel, String sourceClass, String sourceMethod, String bundleName, String msg, Object param)Logs a message of the given level with the specified source class name, source method name and parameter, using the given resource bundle to localize the message.voidLogger. logrb(Level logLevel, String sourceClass, String sourceMethod, String bundleName, String msg, Object[] params)Logs a message of the given level with the specified source class name, source method name and parameter array, using the given resource bundle to localize the message.voidLogger. logrb(Level logLevel, String sourceClass, String sourceMethod, String bundleName, String msg, Throwable thrown)Logs a message of the given level with the specified source class name, source method name andThrowableobject, using the given resource bundle to localize the message.voidHandler. setLevel(Level newLevel)Sets the logging level of the messages logged by this handler, levels lower than this value will be dropped.voidLogger. setLevel(Level newLevel)Sets the logging level for this logger.voidLogRecord. setLevel(Level level)Sets the logging level.voidMemoryHandler. setPushLevel(Level newLevel)Set the push level.Constructors in java.util.logging with parameters of type Level Constructor Description LogRecord(Level level, String msg)Constructs aLogRecordobject using the supplied the logging level and message.MemoryHandler(Handler target, int size, Level pushLevel)Construct and init aMemoryHandlerusing given target, size and push level, other properties usingLogManagerproperties or default values. -
Uses of Level in org.apache.commons.logging.impl
Fields in org.apache.commons.logging.impl declared as Level Modifier and Type Field Description protected static LevelJdk14Logger. dummyLevelThis member variable simply ensures that any attempt to initialise this class in a pre-1.4 JVM will result in an ExceptionInInitializerError.