Interface JsonGenerationContext.JsonLogger

Enclosing interface:
JsonGenerationContext

public static interface JsonGenerationContext.JsonLogger
Logger interface used in the JsonGenerationContext.
CAUTION: This class is still in development and may change drastically without any further notice.
Since:
5.2.191206
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    logDebug(@NotNull String message)
    Logs the given message with the log level debug.
    void
    logError(@NotNull String message)
    Logs the given message with the log level error.
    void
    logError(@NotNull String message, @NotNull Throwable throwable)
    Logs the given message and the given Throwable with the log level error.
    void
    logInfo(@NotNull String message)
    Logs the given message with the log level info.
    void
    logWarning(@NotNull String message)
    Logs the given message with the log level warning.
  • Method Details

    • logDebug

      void logDebug(@NotNull @NotNull String message)
      Logs the given message with the log level debug.
      Parameters:
      message - the message to log
      Since:
      5.2.191206
    • logInfo

      void logInfo(@NotNull @NotNull String message)
      Logs the given message with the log level info.
      Parameters:
      message - the message to log
      Since:
      5.2.191206
    • logWarning

      void logWarning(@NotNull @NotNull String message)
      Logs the given message with the log level warning.
      Parameters:
      message - the message to log
      Since:
      5.2.191206
    • logError

      void logError(@NotNull @NotNull String message)
      Logs the given message with the log level error.
      Parameters:
      message - the message to log
      Since:
      5.2.191206
    • logError

      void logError(@NotNull @NotNull String message, @NotNull @NotNull Throwable throwable)
      Logs the given message and the given Throwable with the log level error.
      Parameters:
      message - the message to log
      throwable - the throwable to log
      Since:
      5.2.191206