-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log history #597
Log history #597
Conversation
return [self toString]; | ||
} | ||
|
||
#pragma mark - NSCoding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To save the object in disk with NSUserDefaults
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If necessary. Currently, the logger does not store the history.
Source/ARTLog.m
Outdated
} | ||
|
||
- (instancetype)initCapturingOutput:(BOOL)capturing { | ||
return [self initCapturingOutput:true historyLines:10]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
10 seems awfully low, should we bump to say 50 or 100?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done c3afa25.
15e8b7f
to
71260ee
Compare
Regarding #596.