Skip to content

CLASS

Logging

public class Logging

A client's plugin that provides the capability to handle any outputted logs.

  • Parameters:
    • level: The LogLevel to be informed about.
    • log: Optional override to forward log messages to your desired handling. Defaults to printing to std out.

Methods

init(level:log:)

public init(level: LogLevel = .none, log: @escaping (String) -> Void = { message in print(message) })