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

[7/10] git commit: plugin name consistency

plugin name consistency


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

Branch: refs/heads/master
Commit: 95365ec0b4ab81286d1f87a8aafb65158d8a706a
Parents: 736e42c
Author: Fil Maj <fi...@nitobi.com>
Authored: Wed Feb 22 09:56:57 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/95365ec0/lib/plugin/ios/console.js
----------------------------------------------------------------------
diff --git a/lib/plugin/ios/console.js b/lib/plugin/ios/console.js
index d21a728..8651591 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, 'DebugConsole', 'log',
+        exec(null, null, 'Debug Console', '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, 'DebugConsole', 'log',
+        exec(null, null, 'Debug Console', '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, 'DebugConsole', 'log',
+        exec(null, null, 'Debug Console', 'log',
             [ this.processMessage(message, maxDepth), { logLevel: 'ERROR' } ]
         );
     else