Skip to content

Commit

Permalink
test time profiler
Browse files Browse the repository at this point in the history
  • Loading branch information
yixiangboy committed Oct 18, 2019
1 parent 2d7b3b0 commit a919839
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ + (void)shareRecords {
/// 打印调用记录
+ (void)printRecords {
NSString *result = [self getRecordsResult];
NSLog(@"dtp == \n%@",result);
NSLog(@"%@",result);
}

+ (NSString *)getRecordsResult {
Expand Down
4 changes: 2 additions & 2 deletions iOS/DoraemonKitDemo/DoraemonKitDemo/DoKitAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ @implementation DoKitAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

//[DoraemonTimeProfiler startRecord];
[DoraemonTimeProfiler startRecord];

//[[self class] handleCCrashReportWrap];
NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);
Expand Down Expand Up @@ -68,7 +68,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
NSArray *array = @[];
NSLog(@"%@",[array description]);

//[DoraemonTimeProfiler stopRecord];
[DoraemonTimeProfiler stopRecord];

return YES;
}
Expand Down

0 comments on commit a919839

Please sign in to comment.