Skip to content

Commit

Permalink
fix: comment out console
Browse files Browse the repository at this point in the history
  • Loading branch information
Alyssa.Yu authored and Alyssa.Yu committed Aug 29, 2023
1 parent 43b66b8 commit b0dbcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Amplitude/UIViewController+AMPScreen.m
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b0dbcae

Please sign in to comment.