Skip to content

Commit

Permalink
Fix the problem of incorrect time unit
Browse files Browse the repository at this point in the history
  • Loading branch information
zhwayne committed Dec 8, 2020
1 parent 34f648f commit df8f7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/AppModule/QTAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ - (void)_sendEvent:(id<QTEvent>)event sel:(SEL)sel{
[message appendString:@"Bus: "];
[message appendString:NSStringFromClass(module.class)];
[message appendFormat:@" execute %@ ",NSStringFromSelector(sel)];
[message appendFormat:@"cost %fms", endTime - beginTime];
[message appendFormat:@"cost %fms", (endTime - beginTime) * 1e3];
NSLog(@"%@",message);
}
#pragma clang diagnostic pop
Expand Down

0 comments on commit df8f7f5

Please sign in to comment.