public enum SdnLog extends Enum<SdnLog>
Sample usage:
private static final Logger log = SdnLog.APP.getLogger();
| Enum Constant and Description |
|---|
ADMIN
Admin logger.
|
APP
Application (component) logger.
|
APP_MANAGER
Application manager.
|
CORE_CONTROLLER
Controller subsystem logger.
|
DB
Persistence logger.
|
EVENT
Event dispatcher logger.
|
FLOWS
Flow service logger.
|
GENERAL
General logger.
|
GUI
GUI logger.
|
HA
Umbrella logger for all core HA services.
|
HA_MANAGER
HA Manager logger.
|
HA_TEAM
Teaming service logger.
|
HA_TEAM_CFG
Teaming config service logger.
|
LEARNING_SWITCH
Learning Switch logger.
|
LINK_DISCO
Link discovery service logger.
|
NET_DIAGNOSTICS
Path/network diagnostics logger.
|
NET_SERVICES
Umbrella logger for all core network services.
|
NODE_DISCO
Node discovery service logger.
|
PATH_DAEMON
Path daemon logger.
|
REGION_MANAGER
Region service logger.
|
ROLE_MANAGER
Role Service logger.
|
ROOT
SDN root logger.
|
RS
REST API logger.
|
TEAMED_CONTROLLER
Teaming Controller Service(TCS)
|
TOPO_VIEW
Topology viewer logger.
|
TOPOLOGY
Topology computation service logger.
|
| Modifier and Type | Method and Description |
|---|---|
org.slf4j.Logger |
getLogger()
Returns the logger associated with this enumeration constant.
|
String |
getName()
Returns the Logger path name.
|
static SdnLog |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SdnLog[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdnLog ROOT
public static final SdnLog GENERAL
public static final SdnLog ADMIN
public static final SdnLog GUI
public static final SdnLog RS
public static final SdnLog CORE_CONTROLLER
public static final SdnLog EVENT
public static final SdnLog DB
public static final SdnLog NET_SERVICES
public static final SdnLog LINK_DISCO
public static final SdnLog NODE_DISCO
public static final SdnLog TOPOLOGY
public static final SdnLog PATH_DAEMON
public static final SdnLog LEARNING_SWITCH
public static final SdnLog FLOWS
public static final SdnLog NET_DIAGNOSTICS
public static final SdnLog TOPO_VIEW
public static final SdnLog ROLE_MANAGER
public static final SdnLog REGION_MANAGER
public static final SdnLog HA
public static final SdnLog HA_MANAGER
public static final SdnLog HA_TEAM
public static final SdnLog HA_TEAM_CFG
public static final SdnLog APP_MANAGER
public static final SdnLog TEAMED_CONTROLLER
public static final SdnLog APP
public static SdnLog[] values()
for (SdnLog c : SdnLog.values()) System.out.println(c);
public static SdnLog valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic org.slf4j.Logger getLogger()
public String getName()
Do not use this for creating Loggers; use getLogger() instead.
Copyright © 2014. All Rights Reserved.