Interface Logger
-
- All Known Implementing Classes:
BaseLogger
public interface Logger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(Exception exception, String format, Object... args)Writes the diagnostic message and exception at the debug level.voiddebug(String format, Object... args)Writes the diagnostic message and exception at the debug level.voiderror(Exception exception, String message, Object... args)Writes the diagnostic message and exception at the error level.voiderror(String format, Object... args)Writes the diagnostic message and exception at the error level.
-
-
-
Method Detail
-
debug
void debug(String format, Object... args)
Writes the diagnostic message and exception at the debug level.
-
debug
void debug(Exception exception, String format, Object... args)
Writes the diagnostic message and exception at the debug level.
-
error
void error(String format, Object... args)
Writes the diagnostic message and exception at the error level.
-
-