SKLogger

public enum SKLogger

A cosole logger.

  • Logs to the console a properly formatted debug message.

    Declaration

    Swift

    public static func log(
      title: String,
      message: Any?,
      file: StaticString = #file,
      line: UInt = #line)

    Parameters

    title

    The title of the log.

    message

    The content of the log.

    file

    The file where the log was from.

    line

    The line where the log was from.