Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9D1169CCB for ; Fri, 13 Apr 2012 20:00:05 +0000 (UTC) Received: (qmail 93146 invoked by uid 500); 13 Apr 2012 20:00:05 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 93127 invoked by uid 500); 13 Apr 2012 20:00:05 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 93118 invoked by uid 99); 13 Apr 2012 20:00:05 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Apr 2012 20:00:05 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 45236CE32; Fri, 13 Apr 2012 20:00:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shazron@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: ios commit: Fixed CB-507 - Remove excessive debug logging in execute delegate method in CDVViewController Message-Id: <20120413200005.45236CE32@tyr.zones.apache.org> Date: Fri, 13 Apr 2012 20:00:05 +0000 (UTC) Updated Branches: refs/heads/1.6.1 0fefc52ae -> 87f2f856b Fixed CB-507 - Remove excessive debug logging in execute delegate method in CDVViewController Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/87f2f856 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/87f2f856 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/87f2f856 Branch: refs/heads/1.6.1 Commit: 87f2f856b9f3afe0cc9b1ae1eb581ce7233367bc Parents: 0fefc52 Author: Shazron Abdullah Authored: Fri Apr 13 12:59:25 2012 -0700 Committer: Shazron Abdullah Committed: Fri Apr 13 12:59:53 2012 -0700 ---------------------------------------------------------------------- CordovaLib/Classes/CDVViewController.m | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/87f2f856/CordovaLib/Classes/CDVViewController.m ---------------------------------------------------------------------- diff --git a/CordovaLib/Classes/CDVViewController.m b/CordovaLib/Classes/CDVViewController.m index 55f4304..a61cae5 100644 --- a/CordovaLib/Classes/CDVViewController.m +++ b/CordovaLib/Classes/CDVViewController.m @@ -739,10 +739,6 @@ BOOL gSplashScreenShown = NO; - (BOOL) execute:(CDVInvokedUrlCommand*)command { - DLog(@"execute class:%@ method:%@", command.className, command.methodName); - DLog(@"arguments: %@", [command.arguments JSONString]); - DLog(@"options: %@", [command.options JSONString]); - if (command.className == nil || command.methodName == nil) { return NO; }