NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
The Overview logger.
This object stores all of the historical information used to draw the graphs in the Overview memory and disk pages, as well as the console log page.
The primary log should be accessed by calling [NIOverview logger].
Tasks | |
Configuration Settings | |
NSTimeInterval | oldestLogAge property |
(NIOverviewLogger *) | + sharedLogger |
Accessing Logs | |
NSMutableOrderedSet * | deviceLogs property |
NSMutableOrderedSet * | consoleLogs property |
NSMutableOrderedSet * | eventLogs property |
Adding Log Entries | |
(void) | - addDeviceLog: |
(void) | - addConsoleLog: |
(void) | - addEventLog: |
The oldest age of a memory or disk log entry.
Log entries older than this number of seconds will be pruned from the log.
By default this is 1 minute.
The linked list of device logs.
Log entries are in increasing chronological order.
The linked list of console logs.
Log entries are in increasing chronological order.
The linked list of events.
Log entries are in increasing chronological order.
Add a device log.
This method will first prune expired entries and then add the new entry to the log.
Add a console log.
This method will not prune console log entries.
Add a event log.
This method will first prune expired entries and then add the new entry to the log.