DDLogMessageOptions

Objective-C

enum DDLogMessageOptions {}

Swift

struct DDLogMessageOptions : OptionSet

Log message options, allow copying certain log elements

  • Use this to use a copy of the file path

    Declaration

    Objective-C

    DDLogMessageCopyFile = 1 << 0

    Swift

    static var copyFile: DDLogMessageOptions { get }
  • Use this to use a copy of the function name

    Declaration

    Objective-C

    DDLogMessageCopyFunction = 1 << 1

    Swift

    static var copyFunction: DDLogMessageOptions { get }
  • Use this to use avoid a copy of the message

    Declaration

    Objective-C

    DDLogMessageDontCopyMessage = 1 << 2

    Swift

    static var dontCopyMessage: DDLogMessageOptions { get }