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

[TIMOB-15078] iOS: Suppress Debuglog 3_1_X #4664

Merged
merged 1 commit into from
Sep 10, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions iphone/Classes/TiWindowProxy.m
Expand Up @@ -249,7 +249,7 @@ -(BOOL)_handleOpen:(id)args
}

if ( (tab == nil) && (isModal == NO) && ([theController topPresentedController] != [theController topContainerController]) ){
DebugLog(@"[WARN] The top View controller is not a container controller. This window will open behind the presented controller.")
DeveloperLog(@"[WARN] The top View controller is not a container controller. This window will open behind the presented controller.")
[self forgetProxy:openAnimation];
RELEASE_TO_NIL(openAnimation);
}
Expand All @@ -265,7 +265,7 @@ -(BOOL)_handleClose:(id)args
RELEASE_TO_NIL(closeAnimation);
}
if ( (tab == nil) && (isModal == NO) && ([theController topPresentedController] != [theController topContainerController]) ){
DebugLog(@"[WARN] The top View controller is not a container controller. This window will open behind the presented controller.")
DeveloperLog(@"[WARN] The top View controller is not a container controller. This window will open behind the presented controller.")
[self forgetProxy:closeAnimation];
RELEASE_TO_NIL(closeAnimation);
}
Expand Down