| 123456789101112131415161718192021222324252627282930 |
- //
- // FLEXOSLogController.h
- // FLEX
- //
- // Created by Tanner on 12/19/18.
- // Copyright © 2018 Flipboard. All rights reserved.
- //
- #import "FLEXLogController.h"
- #define FLEXOSLogAvailable() ([NSProcessInfo processInfo].operatingSystemVersion.majorVersion >= 10)
- extern NSString * const kFLEXiOSPersistentOSLogKey;
- /// The log controller used for iOS 10 and up.
- @interface FLEXOSLogController : NSObject <FLEXLogController>
- + (instancetype)withUpdateHandler:(void(^)(NSArray<FLEXSystemLogMessage *> *newMessages))newMessagesHandler;
- - (BOOL)startMonitoring;
- /// Whether log messages are to be recorded and kept in-memory in the background.
- /// You do not need to initialize this value, only change it.
- @property (nonatomic) BOOL persistent;
- /// Used mostly internally, but also used by the log VC to persist messages
- /// that were created prior to enabling persistence.
- @property (nonatomic) NSMutableArray<FLEXSystemLogMessage *> *messages;
- @end
|