LoggerModule

public struct LoggerModule : RawRepresentable, CustomStringConvertible, Hashable

The struct that represents the module name.

To use it in logger, see also bootstrap(_:).

  • Declaration

    Swift

    public var rawValue: String
  • Initializes the class with a value provided by the rawValue parameter.

    Declaration

    Swift

    public init(rawValue: String)

    Parameters

    rawValue

    The module name string.

  • Declaration

    Swift

    public var description: String { get }