You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2014/01/16 22:37:15 UTC

[3/3] git commit: Native console needs to be called DebugConsole to avoid ambiguous reference. This commit requires the 3.4.0 version of the native class factory

Native console needs to be called DebugConsole to avoid ambiguous reference. This commit requires the 3.4.0 version of the native class factory


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/commit/5c835dc4
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/tree/5c835dc4
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/diff/5c835dc4

Branch: refs/heads/dev
Commit: 5c835dc4c01b0c359116b2d6bbebeb70f9cb0b40
Parents: 117cfbf
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Thu Jan 16 13:35:56 2014 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Thu Jan 16 13:35:56 2014 -0800

----------------------------------------------------------------------
 plugin.xml             | 4 ++--
 src/wp/DebugConsole.cs | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/5c835dc4/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 863f4cb..4bebf02 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -52,7 +52,7 @@
     <platform name="wp7">
         <config-file target="config.xml" parent="/*">
             <feature name="Console">
-                <param name="wp-package" value="Console"/>
+                <param name="wp-package" value="DebugConsole"/>
             </feature>
         </config-file>
 
@@ -71,7 +71,7 @@
     <platform name="wp8">
         <config-file target="config.xml" parent="/*">
             <feature name="Console">
-                <param name="wp-package" value="Console"/>
+                <param name="wp-package" value="DebugConsole"/>
             </feature>
         </config-file>
 

http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/5c835dc4/src/wp/DebugConsole.cs
----------------------------------------------------------------------
diff --git a/src/wp/DebugConsole.cs b/src/wp/DebugConsole.cs
index 31a7127..9bb5476 100644
--- a/src/wp/DebugConsole.cs
+++ b/src/wp/DebugConsole.cs
@@ -26,7 +26,7 @@ using System.Diagnostics;
 
 namespace WPCordovaClassLib.Cordova.Commands
 {
-    public class Console : BaseCommand
+    public class DebugConsole : BaseCommand
     {
         public void logLevel(string options)
         {