Uses of Enum
org.drasyl.util.logging.LogLevel

Packages that use LogLevel
Package
Description
Logging API (for internal use only).
  • Uses of LogLevel in org.drasyl.util.logging

    Methods in org.drasyl.util.logging that return LogLevel
    Modifier and Type
    Method
    Description
    static LogLevel
    LogLevel.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static LogLevel[]
    LogLevel.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.drasyl.util.logging with parameters of type LogLevel
    Modifier and Type
    Method
    Description
    boolean
    Logger.isEnabled(LogLevel level)
    Is the logger instance enabled for the specified level?
    void
    Logger.log(LogLevel level, String msg)
    Log a message at the specified level level.
    void
    Logger.log(LogLevel level, String format, Object arg)
    Log a message at the specified level level according to the specified format and argument.
    void
    Logger.log(LogLevel level, String format, Object... arguments)
    Log a message at the specified level level according to the specified format and arguments.
    void
    Logger.log(LogLevel level, String format, Object arg1, Object arg2)
    Log a message at the specified level level according to the specified format and arguments.
    void
    Logger.log(LogLevel level, String msg, Throwable t)
    Log an exception (throwable) at the specified level level with an accompanying message.
    void
    Logger.log(LogLevel level, String format, Supplier<Object> supplier)
    Log a message at the specified level level according to the specified format and argument supplier.
    void
    Logger.log(LogLevel level, String format, Supplier<Object>... suppliers)
    Log a message at the specified level level according to the specified format and argument suppliers.
    void
    Logger.log(LogLevel level, String format, Supplier<Object> supplier1, Supplier<Object> supplier2)
    Log a message at the specified level level according to the specified format and argument suppliers.
    void
    Logger.log(LogLevel level, Throwable t)
    Log an exception (throwable) at the specified level level.