Interface LoggerFactory

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 LoggerFactory
An interface describing a factory to create a logger instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a logger instance with a given name.
  • Method Details

    • forName

      System.Logger forName(String name)
      Creates a logger instance with a given name.
      Parameters:
      name - Name to create logger with.
      Returns:
      Logger instance.