From b0dbcae7b0a1da3ce7d2c67697813822850c6548 Mon Sep 17 00:00:00 2001 From: "Alyssa.Yu" Date: Tue, 29 Aug 2023 16:37:27 -0700 Subject: [PATCH] fix: comment out console --- Sources/Amplitude/UIViewController+AMPScreen.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);