Class BaseLogger
- java.lang.Object
-
- com.fifa.connectservicebus.sdk.logging.BaseLogger
-
-
Constructor Summary
Constructors Constructor Description BaseLogger()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddebug(Exception exception, String format, Object... args)Writes the diagnostic message and exception at the debug level.protected abstract voiddebug(String message)voiddebug(String format, Object... args)Writes the diagnostic message and exception at the debug level.voiderror(Exception exception, String format, Object... args)Writes the diagnostic message and exception at the error level.protected abstract voiderror(String message)voiderror(String format, Object... args)Writes the diagnostic message and exception at the error level.protected StringformatMessage(String format, Object... args)
-
-
-
Method Detail
-
debug
public void debug(String format, Object... args)
Description copied from interface:LoggerWrites the diagnostic message and exception at the debug level.
-
debug
public void debug(Exception exception, String format, Object... args)
Description copied from interface:LoggerWrites the diagnostic message and exception at the debug level.
-
error
public void error(String format, Object... args)
Description copied from interface:LoggerWrites the diagnostic message and exception at the error level.
-
error
public void error(Exception exception, String format, Object... args)
Description copied from interface:LoggerWrites the diagnostic message and exception at the error level.
-
debug
protected abstract void debug(String message)
-
error
protected abstract void error(String message)
-
-