Uses of Class
java.util.logging.Level

Packages that use 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

    Methods in dalvik.system with parameters of type Level
    Modifier and Type Method Description
    void DalvikLogHandler.publish​(Logger source, String tag, Level level, String message)
    Publishes a log message.
  • Uses of Level in java.util.logging

    Fields in java.util.logging declared as Level
    Modifier and Type Field Description
    static Level Level.ALL
    The ALL level provides all logging messages.
    static Level Level.CONFIG
    The CONFIG level provides static configuration messages.
    static Level Level.FINE
    The FINE level provides tracing messages.
    static Level Level.FINER
    The FINER level provides more detailed tracing messages.
    static Level Level.FINEST
    The FINEST level provides highly detailed tracing messages.
    static Level Level.INFO
    The INFO level provides informative messages.
    static Level Level.OFF
    The OFF level provides no logging messages.
    static Level Level.SEVERE
    The SEVERE level provides severe failure messages.
    static Level Level.WARNING
    The WARNING level provides warnings.
    Methods in java.util.logging that return Level
    Modifier and Type Method Description
    Level Handler.getLevel()
    Gets the logging level of this handler, records with levels lower than this value will be dropped.
    Level Logger.getLevel()
    Gets the logging level of this logger.
    Level LogRecord.getLevel()
    Gets the logging level.
    Level MemoryHandler.getPushLevel()
    Return the push level.
    static Level Level.parse​(String name)
    Parses a level name into a Level object.
    Methods in java.util.logging with parameters of type Level
    Modifier and Type Method Description
    boolean Logger.isLoggable​(Level l)
    Determines whether this logger will actually log messages of the specified level.
    void Logger.log​(Level logLevel, String msg)
    Logs a message of the specified level.
    void Logger.log​(Level logLevel, String msg, Object param)
    Logs a message of the specified level with the supplied parameter.
    void Logger.log​(Level logLevel, String msg, Object[] params)
    Logs a message of the specified level with the supplied parameter array.
    void Logger.log​(Level logLevel, String msg, Throwable thrown)
    Logs a message of the specified level with the supplied Throwable object.
    void Logger.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.
    void Logger.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.
    void Logger.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.
    void Logger.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 and Throwable object.
    void Logger.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.
    void Logger.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.
    void Logger.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.
    void Logger.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 and Throwable object, using the given resource bundle to localize the message.
    void Handler.setLevel​(Level newLevel)
    Sets the logging level of the messages logged by this handler, levels lower than this value will be dropped.
    void Logger.setLevel​(Level newLevel)
    Sets the logging level for this logger.
    void LogRecord.setLevel​(Level level)
    Sets the logging level.
    void MemoryHandler.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 a LogRecord object using the supplied the logging level and message.
    MemoryHandler​(Handler target, int size, Level pushLevel)
    Construct and init a MemoryHandler using given target, size and push level, other properties using LogManager properties 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 Level Jdk14Logger.dummyLevel
    This member variable simply ensures that any attempt to initialise this class in a pre-1.4 JVM will result in an ExceptionInInitializerError.