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 2F7069520 for ; Sat, 3 Mar 2012 19:33:53 +0000 (UTC) Received: (qmail 61411 invoked by uid 500); 3 Mar 2012 19:33:53 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 61366 invoked by uid 500); 3 Mar 2012 19:33:53 -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 61354 invoked by uid 99); 3 Mar 2012 19:33:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Mar 2012 19:33:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.114] (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Mar 2012 19:33:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0C8155C67; Sat, 3 Mar 2012 19:33:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: filmaj@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [6/10] git commit: consolidating plugin names on iOS to be without package name Message-Id: <20120303193308.0C8155C67@tyr.zones.apache.org> Date: Sat, 3 Mar 2012 19:33:08 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org 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 Authored: Fri Feb 17 17:32:22 2012 -0800 Committer: Fil Maj 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