Skip to content

Commit

Permalink
Log reported accurancy
Browse files Browse the repository at this point in the history
  • Loading branch information
rtreffer committed Mar 15, 2014
1 parent ea31d22 commit b013faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/gfd/gsmlocation/GSMService.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void run() {
lat /= infos.length;
float acc = (float)(800d / infos.length);
if (lng != lastLng || lat != lastLat) {
Log.d(TAG, "report (" + lat + "," + lng + ")");
Log.d(TAG, "report (" + lat + "," + lng + ") / " + acc);
lastLng = lng;
lastLat = lat;
report(LocationHelper.create("gsm", lat, lng, acc));
Expand Down

0 comments on commit b013faa

Please sign in to comment.