16 lines
316 B
Objective-C
16 lines
316 B
Objective-C
#ifdef DEBUG
|
|
#define GLog(...) NSLog(@"%s\n %@\n\n", __func__, [NSString stringWithFormat:__VA_ARGS__])
|
|
#else
|
|
#define GLog(...)
|
|
#endif
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TLogUtil : NSObject
|
|
+ (instancetype)sharedInstance;
|
|
- (void)debug:(BOOL)isDebug;
|
|
- (void)print:(NSString *)message;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|