ModuleWideLogService

public protocol ModuleWideLogService

Undocumented

  • Logs an arbitrary debug log message. It will only be called in debug builds.

    Declaration

    Swift

    func log(_ message: String, file: String, function: String, line: Int)
  • Logs an arbitrary public message. It will be called in all builds, and thus should not be used for sensitive information.

    Declaration

    Swift

    func log(public message: String, file: String, function: String, line: Int)
  • Logs an error message indicating that something went wrong. It will be called in all builds, and thus should not be used for sensitive information.

    Declaration

    Swift

    func log(error message: String, file: String, function: String, line: Int)