Skip to content

Commit

Permalink
Improve string formatting in OkHttpJsonApiClient.java (#5916)
Browse files Browse the repository at this point in the history
  • Loading branch information
sikehish authored Nov 1, 2024
1 parent 7c82650 commit f011abe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public List<Place> getNearbyPlaces(final LatLng cur, final String language, fina
throws Exception {

Timber.d("Fetching nearby items at radius %s", radius);
Timber.d("CUSTOM_SPARQL%s", String.valueOf(customQuery != null));
Timber.d("CUSTOM_SPARQL: %s", String.valueOf(customQuery != null));
final String wikidataQuery;
if (customQuery != null) {
wikidataQuery = customQuery;
Expand Down Expand Up @@ -344,7 +344,7 @@ public List<Place> getNearbyPlaces(
final boolean shouldQueryForMonuments, final String customQuery)
throws Exception {

Timber.d("CUSTOM_SPARQL%s", String.valueOf(customQuery != null));
Timber.d("CUSTOM_SPARQL: %s", String.valueOf(customQuery != null));

final String wikidataQuery;
if (customQuery != null) {
Expand Down

0 comments on commit f011abe

Please sign in to comment.