You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2012/04/13 21:59:33 UTC

ios commit: Fixed CB-507 - Remove excessive debug logging in execute delegate method in CDVViewController

Updated Branches:
  refs/heads/master 844be9802 -> ec3e0d6d0


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/ec3e0d6d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/ec3e0d6d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/ec3e0d6d

Branch: refs/heads/master
Commit: ec3e0d6d0a2cc13293a638aba3c8026f06cf6b0c
Parents: 844be98
Author: Shazron Abdullah <sh...@apache.org>
Authored: Fri Apr 13 12:59:25 2012 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Fri Apr 13 12:59:25 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/ec3e0d6d/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;
     }