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/02/23 18:53:18 UTC

[4/35] 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/eea42cb4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/eea42cb4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/eea42cb4

Branch: refs/heads/ios
Commit: eea42cb4d19f130a390334ae3b3eb791a4ea05c3
Parents: 86a3e3c
Author: Fil Maj <fi...@nitobi.com>
Authored: Fri Feb 17 17:32:22 2012 -0800
Committer: Fil Maj <fi...@nitobi.com>
Committed: Thu Feb 23 09:52:59 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/eea42cb4/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