洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
533 B

7 months ago
  1. //
  2. // APLogFormater.h
  3. // APRemoteLogging
  4. //
  5. // Created by tashigaofei on 14-6-23.
  6. // Copyright (c) 2014年 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "DTFMonitorPointDataDefines.h"
  10. #import "DTFLogSetting.h"
  11. @interface DTFLogFormatter : NSObject
  12. @property (nonatomic, strong) NSString *sdkVersion;
  13. - (NSString *)stringFromLog:(NSDictionary *) logDict;
  14. + (NSString *)timestampString;
  15. + (NSString *)getDatetimeString:(NSTimeInterval)time;
  16. + (NSString *)resolutionString;
  17. + (NSArray *)keyPaths;
  18. @end