diff --git a/oeffi/src/de/schildbach/oeffi/stations/NearestFavoriteStationWidgetService.java b/oeffi/src/de/schildbach/oeffi/stations/NearestFavoriteStationWidgetService.java index 6d7e050..d5dec92 100644 --- a/oeffi/src/de/schildbach/oeffi/stations/NearestFavoriteStationWidgetService.java +++ b/oeffi/src/de/schildbach/oeffi/stations/NearestFavoriteStationWidgetService.java @@ -155,7 +155,8 @@ public class NearestFavoriteStationWidgetService extends JobIntentService { log.info("Widgets: {}, location: {}", Arrays.toString(appWidgetIds), here); handleLocation(appWidgetIds, here); } catch (final TimeoutException x) { - log.info("Widgets: {}, location timeout", Arrays.toString(appWidgetIds)); + log.info("Widgets: {}, location timed out after {} ms", Arrays.toString(appWidgetIds), + Constants.LOCATION_TIMEOUT_MS); widgetsHeader(appWidgetIds, getString(R.string.acquire_location_timeout)); } catch (final InterruptedException | ExecutionException x) { throw new RuntimeException(x);