You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/03/03 20:33:08 UTC

[6/10] git commit: consolidating plugin names on iOS to be without package name

consolidating plugin names on iOS to be without package name


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/736e42c9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/736e42c9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/736e42c9

Branch: refs/heads/master
Commit: 736e42c9d2343011fdd3eb15f2861484281930b2
Parents: a26bd93
Author: Fil Maj <fi...@nitobi.com>
Authored: Fri Feb 17 17:32:22 2012 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Fri Mar 2 16:03:21 2012 -0800

----------------------------------------------------------------------
 lib/plugin/ios/console.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/736e42c9/lib/plugin/ios/console.js
----------------------------------------------------------------------
diff --git a/lib/plugin/ios/console.js b/lib/plugin/ios/console.js
index 297fa4a..d21a728 100644
--- a/lib/plugin/ios/console.js
+++ b/lib/plugin/ios/console.js
@@ -66,7 +66,7 @@ DebugConsole.prototype.processMessage = function(message, maxDepth) {
  */
 DebugConsole.prototype.log = function(message, maxDepth) {
     if (this.logLevel <= DebugConsole.INFO_LEVEL)
-        exec(null, null, 'com.phonegap.debugconsole', 'log',
+        exec(null, null, 'DebugConsole', 'log',
             [ this.processMessage(message, maxDepth), { logLevel: 'INFO' } ]
         );
     else
@@ -79,7 +79,7 @@ DebugConsole.prototype.log = function(message, maxDepth) {
  */
 DebugConsole.prototype.warn = function(message, maxDepth) {
     if (this.logLevel <= DebugConsole.WARN_LEVEL)
-        exec(null, null, 'com.phonegap.debugconsole', 'log',
+        exec(null, null, 'DebugConsole', 'log',
             [ this.processMessage(message, maxDepth), { logLevel: 'WARN' } ]
         );
     else
@@ -92,7 +92,7 @@ DebugConsole.prototype.warn = function(message, maxDepth) {
  */
 DebugConsole.prototype.error = function(message, maxDepth) {
     if (this.logLevel <= DebugConsole.ERROR_LEVEL)
-        exec(null, null, 'com.phonegap.debugconsole', 'log',
+        exec(null, null, 'DebugConsole', 'log',
             [ this.processMessage(message, maxDepth), { logLevel: 'ERROR' } ]
         );
     else