diff --git a/Sources/Amplitude/UIViewController+AMPScreen.m b/Sources/Amplitude/UIViewController+AMPScreen.m index 5cc65e22..397fd7c2 100644 --- a/Sources/Amplitude/UIViewController+AMPScreen.m +++ b/Sources/Amplitude/UIViewController+AMPScreen.m @@ -152,7 +152,7 @@ void printViewHierarchy(UIView *view, int indent) { for (int i = 0; i < indent; i++) { [indentation appendString:@" "]; } - NSLog(@"**********Print View Hierarchy**********"); + // NSLog(@"**********Print View Hierarchy**********"); NSLog(@"%@%@", indentation, view); for (UIView *subview in view.subviews) { printViewHierarchy(subview, indent + 4);