36 lines
834 B
Objective-C
36 lines
834 B
Objective-C
#import "TDLogging.h"
|
|
|
|
#import <os/log.h>
|
|
#import "TDOSLog.h"
|
|
|
|
@implementation TDLogging
|
|
|
|
+ (instancetype)sharedInstance {
|
|
static dispatch_once_t once;
|
|
static id sharedInstance;
|
|
dispatch_once(&once, ^{
|
|
sharedInstance = [[self alloc] init];
|
|
});
|
|
return sharedInstance;
|
|
}
|
|
|
|
- (void)logCallingFunction:(TDLoggingLevel)type format:(id)messageFormat, ... {
|
|
if (messageFormat) {
|
|
va_list formatList;
|
|
va_start(formatList, messageFormat);
|
|
NSString *formattedMessage = [[NSString alloc] initWithFormat:messageFormat arguments:formatList];
|
|
va_end(formatList);
|
|
|
|
#ifdef __IPHONE_10_0
|
|
if (@available(iOS 10.0, *)) {
|
|
[TDOSLog log:NO message:formattedMessage type:type];
|
|
}
|
|
#else
|
|
NSLog(@"[THINKING] %@", formattedMessage);
|
|
#endif
|
|
}
|
|
}
|
|
|
|
@end
|
|
|