Package Summary  Overview Summary

class:System.Logger.Level [NONE]

field:ALL [NONE]

field:TRACE [NONE]

  • TRACE

    public static final System.Logger.Level TRACE
    TRACE level: usually used to log diagnostic information. This level severity is 400.

field:DEBUG [NONE]

  • DEBUG

    public static final System.Logger.Level DEBUG
    DEBUG level: usually used to log debug information traces. This level severity is 500.

field:INFO [NONE]

field:WARNING [NONE]

  • WARNING

    public static final System.Logger.Level WARNING
    WARNING level: usually used to log warning messages. This level severity is 900.

field:ERROR [NONE]

field:OFF [NONE]

method:values() [NONE]

  • values

    public static System.Logger.Level[] values()
    Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
    for (System.Logger.Level c : System.Logger.Level.values())
        System.out.println(c);
    
    Returns:
    an array containing the constants of this enum type, in the order they are declared

method:valueOf(java.lang.String) [NONE]

  • valueOf

    public static System.Logger.Level valueOf​(String name)
    Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
    Parameters:
    name - the name of the enum constant to be returned.
    Returns:
    the enum constant with the specified name
    Throws:
    IllegalArgumentException - if this enum type has no constant with the specified name
    NullPointerException - if the argument is null

method:getName() [NONE]

  • getName

    public final String getName()
    Returns the name of this level.
    Returns:
    this level Enum.name().

method:getSeverity() [NONE]

  • getSeverity

    public final int getSeverity()
    Returns the severity of this level. A higher severity means a more severe condition.
    Returns:
    this level severity.

© 2018 Oracle Corporation and/or its affiliates