Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B1866F80E for ; Wed, 27 Mar 2013 23:40:51 +0000 (UTC) Received: (qmail 23315 invoked by uid 500); 27 Mar 2013 23:40:51 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 23189 invoked by uid 500); 27 Mar 2013 23:40:51 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 23173 invoked by uid 99); 27 Mar 2013 23:40:51 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Mar 2013 23:40:51 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 4783282891A; Wed, 27 Mar 2013 23:40:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: purplecabbage@apache.org To: commits@cordova.apache.org Date: Wed, 27 Mar 2013 23:40:51 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/7] wp7 commit: error in string.format of exception hander Updated Branches: refs/heads/master aaa4a2e4c -> 77431c12d error in string.format of exception hander Project: http://git-wip-us.apache.org/repos/asf/cordova-wp7/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp7/commit/eb438513 Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp7/tree/eb438513 Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp7/diff/eb438513 Branch: refs/heads/master Commit: eb4385131f320c820e619d1c26320cecce25e1f2 Parents: aaa4a2e Author: Jesse MacFadyen Authored: Wed Mar 27 08:56:19 2013 -0700 Committer: Jesse MacFadyen Committed: Wed Mar 27 08:56:19 2013 -0700 ---------------------------------------------------------------------- templates/standalone/cordovalib/NativeExecution.cs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-wp7/blob/eb438513/templates/standalone/cordovalib/NativeExecution.cs ---------------------------------------------------------------------- diff --git a/templates/standalone/cordovalib/NativeExecution.cs b/templates/standalone/cordovalib/NativeExecution.cs index 25efd01..c0d768e 100644 --- a/templates/standalone/cordovalib/NativeExecution.cs +++ b/templates/standalone/cordovalib/NativeExecution.cs @@ -145,7 +145,7 @@ namespace WPCordovaClassLib.Cordova catch (Exception ex) { // ERROR - Debug.WriteLine(String.Format("ERROR: Unable to execute command :: {0}:{1}:{3} ", + Debug.WriteLine(String.Format("ERROR: Unable to execute command :: {0}:{1}:{2} ", commandCallParams.Service, commandCallParams.Action, ex.Message)); this.OnCommandResult(commandCallParams.CallbackId, new PluginResult(PluginResult.Status.ERROR));