Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ios): do not log Ti.App events #11259

Merged
merged 8 commits into from
Dec 9, 2019
2 changes: 0 additions & 2 deletions iphone/Classes/AppModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ - (void)fireEvent:(NSArray *)args
id type = [args objectAtIndex:0];
id obj = [args count] > 1 ? [args objectAtIndex:1] : nil;

DebugLog(@"[DEBUG] Firing app event: %@", type);

NSArray *array = [[appListeners objectForKey:type] copy];

if (array != nil && [array count] > 0) {
Expand Down