diff --git a/Sources/AppModule/QTAppDelegate.m b/Sources/AppModule/QTAppDelegate.m index 2fadf29..ef22131 100644 --- a/Sources/AppModule/QTAppDelegate.m +++ b/Sources/AppModule/QTAppDelegate.m @@ -239,7 +239,7 @@ - (void)_sendEvent:(id)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