Interface ILogger

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ILogger
A mechanism to log errors throughout JFace.

Clients may provide their own implementation to change how errors are logged from within JFace.

Since:
3.1
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    log(IStatus status)
    Logs the given status.
  • Method Details

    • log

      void log(IStatus status)
      Logs the given status.
      Parameters:
      status - the status to log