Update log sink API.
This commit is contained in:
parent
b79ed1ca0b
commit
ff9596aef0
@ -32,7 +32,7 @@
|
|||||||
@end
|
@end
|
||||||
|
|
||||||
MPLogSink mpw_log_sink_pearl;
|
MPLogSink mpw_log_sink_pearl;
|
||||||
void mpw_log_sink_pearl(const MPLogEvent *record) {
|
bool mpw_log_sink_pearl(const MPLogEvent *record) {
|
||||||
|
|
||||||
PearlLogLevel level = PearlLogLevelInfo;
|
PearlLogLevel level = PearlLogLevelInfo;
|
||||||
switch (record->level) {
|
switch (record->level) {
|
||||||
@ -58,6 +58,7 @@ void mpw_log_sink_pearl(const MPLogEvent *record) {
|
|||||||
|
|
||||||
[[PearlLogger get] inFile:[@(record->file) lastPathComponent] atLine:record->line fromFunction:@(record->function)
|
[[PearlLogger get] inFile:[@(record->file) lastPathComponent] atLine:record->line fromFunction:@(record->function)
|
||||||
withLevel:level text:@(record->message)];
|
withLevel:level text:@(record->message)];
|
||||||
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
@implementation MPAppDelegate_Shared
|
@implementation MPAppDelegate_Shared
|
||||||
|
Loading…
Reference in New Issue
Block a user