public interface XmlLogger
XmlLogger describes a logger interface used when the VTN Manager
loads the VTN configuration from XML file.| Modifier and Type | Method and Description |
|---|---|
void |
log(VTNLogLevel level,
String format,
Object... args)
Log a message according to the specified format string and arguments.
|
void |
log(VTNLogLevel level,
Throwable t,
String format,
Object... args)
Log the specified throwable and a message according to the given
format string and arguments.
|
void log(VTNLogLevel level, String format, Object... args)
This method constructs a message using SLF4J log format.
level - A VTNLogLevel instance that specifies the
logging level.format - A format string used to construct log message.args - An object array used to construct log message.void log(VTNLogLevel level, Throwable t, String format, Object... args)
Note that this method constructs a log message using
String.format(String, Object[]).
level - A VTNLogLevel instance that specifies the
logging level.t - A Throwable to be logged.format - A format string used to construct log message.args - An object array used to construct log message.Copyright © 2018 OpenDaylight. All rights reserved.