AWSDDLogMessageOptions
Objective-C
enum AWSDDLogMessageOptions : NSInteger {}
Swift
struct AWSDDLogMessageOptions : OptionSet, @unchecked Sendable
Log message options, allow copying certain log elements
-
Use this to use a copy of the file path
Declaration
Objective-C
AWSDDLogMessageCopyFile = 1 << 0
Swift
static var copyFile: AWSDDLogMessageOptions { get }
-
Use this to use a copy of the function name
Declaration
Objective-C
AWSDDLogMessageCopyFunction = 1 << 1
Swift
static var copyFunction: AWSDDLogMessageOptions { get }
-
Use this to use avoid a copy of the message
Declaration
Objective-C
AWSDDLogMessageDontCopyMessage = 1 << 2
Swift
static var dontCopyMessage: AWSDDLogMessageOptions { get }