public static enum Constants.LogLevel extends java.lang.Enum<Constants.LogLevel>
LoggingInterface
Enum Constant and Description |
---|
ERROR
used for events that will presumably lead the application to abort
|
INFO
used for informational messages that highlight the progress of the application at coarse-grained level
|
TRACE
used for finer-grained informational events
|
TRACE_WEBRTC
used for enabling webrtc sensitive logging
|
WARNING
used for potentially harmful situations
|
Modifier and Type | Method and Description |
---|---|
static Constants.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.LogLevel ERROR
public static final Constants.LogLevel WARNING
public static final Constants.LogLevel INFO
public static final Constants.LogLevel TRACE
public static final Constants.LogLevel TRACE_WEBRTC
public static Constants.LogLevel[] values()
for (Constants.LogLevel c : Constants.LogLevel.values()) System.out.println(c);
public static Constants.LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null