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 2016/08/22 20:34:11 UTC

cordova-plugin-geolocation git commit: Plugin uses Android Log class and not Cordova LOG class

Repository: cordova-plugin-geolocation
Updated Branches:
  refs/heads/master 006523732 -> edafd7138


Plugin uses Android Log class and not Cordova LOG class


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

Branch: refs/heads/master
Commit: edafd7138c4266dd12c61bc8a0d900f427d9b8dc
Parents: 0065237
Author: Simon MacDonald <si...@gmail.com>
Authored: Mon Aug 22 16:33:59 2016 -0400
Committer: Simon MacDonald <si...@gmail.com>
Committed: Mon Aug 22 16:33:59 2016 -0400

----------------------------------------------------------------------
 src/android/Geolocation.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation/blob/edafd713/src/android/Geolocation.java
----------------------------------------------------------------------
diff --git a/src/android/Geolocation.java b/src/android/Geolocation.java
index 3e0bd8a..6452170 100644
--- a/src/android/Geolocation.java
+++ b/src/android/Geolocation.java
@@ -21,7 +21,6 @@ package org.apache.cordova.geolocation;
 import android.content.pm.PackageManager;
 import android.Manifest;
 import android.os.Build;
-import android.util.Log;
 
 import org.apache.cordova.CallbackContext;
 import org.apache.cordova.CordovaArgs;
@@ -43,7 +42,7 @@ public class Geolocation extends CordovaPlugin {
 
 
     public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
-        Log.d(TAG, "We are entering execute");
+        LOG.d(TAG, "We are entering execute");
         context = callbackContext;
         if(action.equals("getPermission"))
         {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org