18 lines
294 B
Objective-C
18 lines
294 B
Objective-C
//
|
|
// TDSLoggerService.h
|
|
// TDSCommon
|
|
//
|
|
// Created by Insomnia on 2020/10/30.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TDSLoggerService : NSObject
|
|
|
|
+ (void)log:(NSString *)config tag:(NSString *)tag message:(NSString *)message;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|