Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestguice committed Jun 27, 2023
1 parent effb434 commit 9865649
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ protected LocationListTaskResult doInBackground(Object... params)
if (cursor != null)
{
int selectedIndex = GetFixDatabaseAdapter.findPlaceByName(selected.getLabel(), cursor);
if (selectedIndex < 0)
Log.w("LocationListTask", "Place selection not found! " + selectedPlaceName + ":" + selectedPlaceLat + "," + selectedPlaceLon + " [" + selectedPlaceAlt + "]");
else Log.d("LocationListTask", "Place selection: " + selectedPlaceName + ":" + selectedPlaceLat + "," + selectedPlaceLon + " [" + selectedPlaceAlt + "]");
if (selectedIndex < 0) {
Log.w("LocationListTask", "Place selection not found! " + selectedPlaceName + ":" + selectedPlaceLat + "," + selectedPlaceLon + " [" + selectedPlaceAlt + "]");
} // else Log.d("LocationListTask", "Place selection: " + selectedPlaceName + ":" + selectedPlaceLat + "," + selectedPlaceLon + " [" + selectedPlaceAlt + "]");

result = new LocationListTaskResult(cursor, selectedIndex);
}
Expand Down

0 comments on commit 9865649

Please sign in to comment.