You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2014/06/05 01:46:34 UTC

git commit: CB-6848 Add Android quirk, list applicable platforms

Repository: cordova-plugin-console
Updated Branches:
  refs/heads/master 9b8e92589 -> 8d1e33748


CB-6848 Add Android quirk, list applicable platforms


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/8d1e3374
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/tree/8d1e3374
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/diff/8d1e3374

Branch: refs/heads/master
Commit: 8d1e33748600813bd892fa6495895d1ef3ba490d
Parents: 9b8e925
Author: Marcel Kinard <cm...@gmail.com>
Authored: Wed Jun 4 19:45:55 2014 -0400
Committer: Marcel Kinard <cm...@gmail.com>
Committed: Wed Jun 4 19:45:55 2014 -0400

----------------------------------------------------------------------
 doc/index.md | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-console/blob/8d1e3374/doc/index.md
----------------------------------------------------------------------
diff --git a/doc/index.md b/doc/index.md
index a5dfc33..437846f 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -19,11 +19,18 @@
 
 # org.apache.cordova.console
 
-This plugin is meant to ensure that console.log() is as useful as it can be. If
-you are not unhappy with how console.log() works for you, then you probably
+This plugin is meant to ensure that console.log() is as useful as it can be.
+It adds additional function for iOS, Ubuntu, Windows Phone 8, and Windows 8. If
+you are happy with how console.log() works for you, then you probably
 don't need this plugin.
 
 ## Installation
 
     cordova plugin add org.apache.cordova.console
 
+### Android Quirks
+
+On some platforms other than Android, console.log() will act on multiple
+arguments, such as console.log("1", "2", "3"). However, Android will act only
+on the first argument. Subsequent arguments to console.log() will be ignored.
+This plugin is not the cause of that, it is a limitation of Android itself.