Interface ProvisionLogger


public interface ProvisionLogger
Allows messages to be logged during provision which will be directed back to the party initiating the request.
Author:
bratseth
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    log(Level level, String message)
    Log a message unrelated to the application package, e.g.
    default void
    Log a message related to the application package.
  • Method Details

    • log

      void log(Level level, String message)
      Log a message unrelated to the application package, e.g. internal error/status.
    • logApplicationPackage

      default void logApplicationPackage(Level level, String message)
      Log a message related to the application package. These messages should be actionable by the user, f.ex. to signal usage of invalid/deprecated syntax. This default implementation just forwards to log(Level, String)