Interface LogAdapter
-
- All Known Implementing Classes:
ConsoleLogAdapter
,Slf4jLogAdapter
public interface LogAdapter
The command line tool needs to be enabled to only log to STDOUT or STDERR. Due to some limitations within the onejar bootstraping, we have to provide our own LogAdapter to be used within the "library" of the jmxconfiggenerator implementations. Otherwise we would see log output on STDOUT/STDERR when using the cli tool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
debug(String message, Object... args)
void
error(String message, Object... args)
default String
format(String message, Object... args)
void
info(InputStream inputStream)
void
info(String message, Object... args)
boolean
isDebugEnabled()
void
warn(String warnMessage, Object... args)
-
-
-
Method Detail
-
info
void info(InputStream inputStream)
-
isDebugEnabled
boolean isDebugEnabled()
-
-