AWSDDASLLogCapture

Objective-C


@interface AWSDDASLLogCapture : NSObject

Swift

class AWSDDASLLogCapture : NSObject

This class provides the ability to capture the ASL (Apple System Logs)

  • Start capturing logs

    Declaration

    Objective-C

    + (void)start;

    Swift

    class func start()
  • Stop capturing logs

    Declaration

    Objective-C

    + (void)stop;

    Swift

    class func stop()
  • The current capture level.

    Note

    Default log level: AWSDDLogLevelVerbose (i.e. capture all ASL messages).

    Declaration

    Objective-C

    @property (class) AWSDDLogLevel captureLevel;

    Swift

    class var captureLevel: AWSDDLogLevel { get set }