elf4j

Maven Central

elf4j - Easy Logging Facade for Java

API and SPI of a no-fluff Java logging facade

User stories

  1. As a Java application developer, I want to use a log service API, so that I can choose or switch to use any compliant log service provider without changing my application code.
  2. As a log service/engine/framework provider, I want to implement a Service Provider Interface (SPI), so that the log service client application can opt (either in or out) to use my log service implementation, without code change.

Prerequisite

Java 8 or better, although individual logging service providers may have higher JDK version prerequisite.

What it is…

It is a logging Service Interface and Access API

If you are familiar with other logging APIs such as SLF4J/LOGBACK/LOG4J, you will find most counterpart logging methods in ELF4J, with some noticeable differences:

/**
 * The Logger serves as both the "service interface" and "access API" as in the <a
 * href="https://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html">Java Service Provider Framework</a>.
 *
 * <p>All {@link Logger} instances from this API should be thread-safe.
 */
public interface Logger {
  /**
   * Static factory method as the "service access API" that provides a default Logger instance
   *
   * @return Logger instance with default name and Level
   * @implNote It is up to the logging service provider to determine the default name and level of the logger instance
   *     to be returned.
   */
  static Logger instance() {
    return LoggerFactoryLocator.INSTANCE.getLoggerFactory().getLogger();
  }

  /**
   * Instance factory method that provides a Logger instance for the specified log level with the same name as this
   * Logger instance
   *
   * @param level the logging level of the requested Logger instance
   * @return Logger instance of the specified level
   * @implNote A Logger instance's severity level is immutable and cannot be changed after creation. Therefore, this
   *     method can return the current instance itself only if the specified level is the same as the current
   *     instance's; otherwise, it will have to be a different Logger instance to be returned.
   */
  Logger atLevel(Level level);

  /**
   * Retrieves the severity level of the Logger instance.
   *
   * @return the severity level of the logger instance
   */
  Level getLevel();

  /**
   * Checks if logging is enabled for this Logger instance.
   *
   * @return true if logging is enabled, false otherwise
   */
  boolean isEnabled();

  /**
   * Checks if logging is enabled for the Logger instance obtained by calling one of the instance factory methods of this Logger
   * instance at the specified level
   *
   * @param level the logging level to check
   * @return true if logging is enabled at the specified level, false otherwise
   */
  default boolean isEnabled(Level level) {
    return atLevel(level).isEnabled();
  }

  /**
   * Logs a message.
   *
   * @param message the message to be logged. If the actual type is {@link java.util.function.Supplier}, the result of
   *     {@link Supplier#get()} is used to construct the final log message.
   */
  void log(Object message);

  /**
   * Logs a message provided by a Supplier. Convenience overloading method of {@link #log(Object)}, so no need of
   * downcast to {@link Supplier} when the message argument is provided as a lambda expression.
   *
   * @param message Supplier of the message to be logged
   */
  default void log(@NonNull Supplier<?> message) {
    if (!isEnabled()) {
      return;
    }
    log(message.get());
  }

  /**
   * Logs a formatted message with arguments.
   *
   * @param message the message to be logged, which may contain argument placeholders denoted as `{}` tokens
   * @param arguments the arguments whose values will replace the placeholders in the message. The arguments can be a
   *     mixture of both eager {@code Object} and lazy {@code Supplier<?>} types. When both types are present, lambda
   *     expression arguments need to be downcast to {@code Supplier<?>} per the lambda syntax requirement.
   */
  void log(String message, Object... arguments);

  /**
   * Logs a formatted message with arguments provided by Suppliers (lambda expressions). Convenience overloading
   * method of {@link Logger#log(String, Object...)}, so that no need to downcast to {@link Supplier} when all
   * arguments are lazy lambda expressions.
   *
   * @param message the message to be logged
   * @param arguments Suppliers of the arguments to replace placeholders in the message; no downcast needed as all
   *     arguments are of {@code Supplier<?>} type.
   */
  default void log(String message, Supplier<?>... arguments) {
    if (!isEnabled()) {
      return;
    }
    log(message, supply(arguments));
  }

  static Object @NonNull [] supply(Supplier<?>[] arguments) {
    return Arrays.stream(arguments).map(Supplier::get).toArray(Object[]::new);
  }

  /**
   * Logs a Throwable.
   *
   * @param throwable the Throwable to be logged
   */
  void log(Throwable throwable);

  /**
   * Logs a Throwable with an accompanying message.
   *
   * @param throwable the Throwable to be logged
   * @param message the accompanying message to be logged. If the actual type is {@link java.util.function.Supplier},
   *     the result of {@link Supplier#get()} is used to compute the final log message.
   */
  void log(Throwable throwable, Object message);

  /**
   * Logs a Throwable with an accompanying message provided by a Supplier.
   *
   * @param throwable the Throwable to be logged
   * @param message Supplier of the accompanying message to be logged
   */
  default void log(Throwable throwable, @NonNull Supplier<?> message) {
    if (!isEnabled()) {
      return;
    }
    log(throwable, message.get());
  }

  /**
   * Logs a Throwable with a formatted message and arguments.
   *
   * @param throwable the Throwable to be logged
   * @param message the message to be logged, which may contain argument placeholders
   * @param arguments the arguments whose values will replace the placeholders in the message
   */
  void log(Throwable throwable, String message, Object... arguments);

  /**
   * Logs a Throwable with a formatted message and arguments provided by Suppliers.
   *
   * @param throwable the Throwable to be logged
   * @param message the message to be logged
   * @param arguments Suppliers of the arguments to replace placeholders in the message
   */
  default void log(Throwable throwable, String message, Supplier<?>... arguments) {
    if (!isEnabled()) {
      return;
    }
    log(throwable, message, supply(arguments));
  }

  // Following methods are convenience shorthands added to resemble other logging APIs

  default boolean isTraceEnabled() {
    return atTrace().isEnabled();
  }

  default void trace(Object message) {
    atTrace().log(message);
  }

  default void trace(Throwable throwable, String message, Object... arguments) { // again, the throwable goes first
    atTrace().log(throwable, message, arguments);
  }

  // More resembling convenience methods...
}

It is a logging Service Provider Interface (SPI)

public interface LogServiceProvider {
  Logger logger();
}

Conventions, Defaults, and Implementation Notes (a.k.a. “the spec”)

Thread safety

A Logger instance should be thread-safe.

Severity Level

If a Logger instance is obtained via the Logger.instance() static factory method, then the default severity level of such instance is decided by the service provider implementation. If a Logger instance is obtained via one of the Logger.at<Level> instance factory methods, then its severity level should be as requested.

Placeholder token

The empty curly braces token {} should be the placeholder for message arguments. This is by convention, and does not syntactically appear in the API or SPI. Both the API user and the Service Provider must honor such convention.

Lazy arguments

Lazy arguments are those whose runtime type is java.util.function.Supplier, often provided via lambda expressions. Unlike other/eager types of arguments, lazy ones have to be treated specially in that the Supplier function must be applied first before the result is used as the substitution to the argument placeholder {}. This special handling of lazy arguments is by convention, and not syntactically enforced by the API or SPI. It allows for the API user to mix up lazy and eager arguments within the same logging method call.

Get it

Maven Central

Include it as a compile-scope dependency in a build tool compatible with Maven Dependency Management. e.g.

<dependency>
    <groupId>io.github.elf4j</groupId>
    <artifactId>elf4j</artifactId>
    <version>${version}</version>
</dependency>

Use it…

Use it as the logging Service (facade) API (while hiding the concrete log service provider API from your application code)

class SampleUsage {
  static Logger logger = Logger.instance();

  @Nested
  class plainText {
    @Test
    void declarationsAndLevels() {
      logger.log(
          "Logger instance is thread-safe so it can be declared and used as a local, instance, or static variable");
      logger.log("Default severity level is decided by the logging provider implementation");
      Logger trace = logger.atTrace();
      trace.log("Explicit severity level is specified by user i.e. TRACE");
      Logger.instance().atTrace().log("Same explicit level TRACE");
      logger.atDebug().log("Severity level is DEBUG");
      logger.atInfo().log("Severity level is INFO");
      trace.atWarn().log("Severity level is WARN, not TRACE");
      logger.atError().log("Severity level is ERROR");
      Logger.instance()
          .atDebug()
          .atError()
          .atTrace()
          .atWarn()
          .atInfo()
          .log("Not a practical example but the severity level is INFO");
    }
  }

  @Nested
  class textWithArguments {
    Logger info = logger.atInfo();

    @Test
    void lazyAndEagerArgumentsCanBeMixed() {
      info.log("Message can have any number of arguments of {} type", Object.class.getTypeName());
      info.log(
          "Lazy arguments, of {} type, whose values may be {} can be mixed with eager arguments of non-Supplier types",
          Supplier.class.getTypeName(),
          (Supplier) () -> "expensive to compute");
      info.atWarn()
          .log("The Supplier downcast is mandatory per lambda syntax because arguments are declared as generic Object rather than functional interface");
    }
  }

  @Nested
  class supplierMessageAndArguments {
    Logger logger = Logger.instance();

    @Test
    void noDowncastNeededWhenAllMessageOrArgumentsAreSuppliers() {
      logger.log(
          () ->
              "No downcast needed when message or arguments are all of Supplier type, rather than mixed with Object types");
      logger.log("Message can have any number of {} type arguments", Supplier.class::getTypeName);
      logger.log(
          "Lazy arguments of {} type can be used to supply values that may be {}",
          Supplier.class::getTypeName,
          () -> "expensive to compute");
      Exception ex = new Exception("test ex for Suppliers");
      logger.log(ex, () -> "Exception log message can be a Supplier");
      logger.log(ex, "So can the {}'s {}", () -> "message", () -> "arguments");
    }
  }

  @Nested
  class throwable {
    @Test
    void asTheFirstArgument() {
      Exception exception = new Exception("Exception message");
      logger.atError().log(exception);
      logger.atError().log(exception, "Optional log message");
      logger.atInfo()
          .log(exception,
              "Exception is always the first argument to a logging method. The {} log message and following arguments work the same way {}.",
              "optional",
              (Supplier) () -> "as usual");
    }
  }
}

Note that elf4j is a logging service facade and specification, rather than the implementation. As such,

Use it as the service provider interface (SPI) to provide concrete log service

To enable an independent logging framework/engine via the elf4j spec, the service provider should follow instructions of Java Service Provider Framework. Namely, the implementation should include

Available logging service providers of elf4j