Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing data for single tiles when using GeoJsonSource #2410

Open
Helium314 opened this issue May 20, 2024 · 20 comments
Open

Missing data for single tiles when using GeoJsonSource #2410

Helium314 opened this issue May 20, 2024 · 20 comments
Labels
android 💰 bounty bug Something isn't working

Comments

@Helium314
Copy link
Contributor

Helium314 commented May 20, 2024

Describe the bug
Sometimes when using a GeoJsonSource, data in single tiles appears to be missing.
The bug is only happening rarely, I needed to switch many times to finally catch it while recording was running:

that_bug_short.mp4

You can see that after clicking on Street lighting only the pins / markers flash, but actually the road colors are supposed to change as well. When zooming and panning, it seems that the expected behavior is taking place everywhere, except for the initially displayed map tile.
When setting data again by switching to another overlay and back to Street lighting, everything works fine.

The issue might be related to #2372, see the second recording where data for certain tiles is not displayed.

Additional information
There are two GeoJsonSources involved: one for the pins, and one for the overlay (i.e. the road coloring). For both sources, a new FeatureCollection is set on switching the overlay, without a fixed order. Additionally, the pins source is cleared just before setting pins again (using setGeoJson(null as FeatureCollection?))
Overlay source has following non-default settings: isVolatile = true, GeoJsonOptions().withMinZoom(16).
Pins source has following non-default settings: isVolatile = true, GeoJsonOptions().withCluster(true).withClusterMaxZoom(16).
The screen recording is around zoom 18.

Platform information:

  • OS: Android 9 / LineageOS 16
  • Platform: Android
  • Version: 11.0.0
@Helium314 Helium314 added the bug Something isn't working label May 20, 2024
@westnordost
Copy link
Collaborator

westnordost commented May 21, 2024

The general difficulty to reproduce this (other than in #2372 which may or may not be the same issue) points towards it being a race condition.

GeoJsonSource::setGeoJson must be called on the UI Thread in Java, but in native code, the actual map update is offloaded into a background thread. Glancing over the native code, it looks like it is already ensured that every update of a geojson source is executed one after another in the order in which the update was called, so maybe only at certain edge cases, there's something not working as intended?

@louwers
Copy link
Collaborator

louwers commented May 22, 2024

I just closed the other issue for the reasons outlined in my comment. Are you able to reproduce this on a device?

@westnordost
Copy link
Collaborator

The recording above was done on a real device.

@louwers
Copy link
Collaborator

louwers commented May 22, 2024

Maybe #2398 will fix this.

@Helium314
Copy link
Contributor Author

The bug also can happen when completely disabling the pins, so only a single GeoJsonSource is changed.

It looks like the issue is triggered more frequently after having the "Addresses" overlay enabled. There is nothing specific to this overlay. Or maybe it could be seen as special that it duplicates data that already exists on the background map in the same style.
(@westnordost for the test I disabled the layer visibility changes that are specific to this layer)

that_bug_again.mp4

Here I also noticed that it's possible to select elements from previously used overlays (in this case a building selectable in addresses overlay, which was selected before starting the screen recording).

@westnordost
Copy link
Collaborator

westnordost commented May 26, 2024

Here I also noticed that it's possible to select elements from previously used overlays

Hmm, from the previous overlay or from the previous overlays? Only in that tile and zoom where the issue occurs, or everywhere?

Also, you stated before that you could only reproduce this rarely. But in the last video, it looks like it's an issue all the time?

Or maybe it could be seen as special that it duplicates data that already exists on the background map in the same style.

This statement is misleading. Yes, it may be rendered the same, but it is a different source and different layers than that other data.

@Helium314
Copy link
Contributor Author

Also, you stated before that you could only reproduce this rarely. But in the last video, it looks like it's an issue all the time?

The hard to reproduce thing is to come into that state. Especially without the address overlay.
Whether it works with the address overlay is a bit weird, sometimes everything works normally, and sometimes I reproduce it every time until I uninstall and re-install the app.

@westnordost
Copy link
Collaborator

westnordost commented May 26, 2024

Hm, I see. So, to translate the additional findings for MapLibre maintainers:

The tiles of the source at the zoom level(s) for which the issue appears are not empty, as it previously appeared, but still contain the data from before the last setGeoJson call. (They just appear empty because the app does not render it)

In other words, some tiles at some zoom levels are not updated following a call to setGeoJson. The circumstances under which this issue appears continues to be hard to reproduce, but once reproduction succeeds, it happens all the time.

@Helium314 additionally mentioned that it appeared to him that he had more success in reproducing the issue when he used the app's "address overlay". What happens here is that two things happen almost simultaneously (in undefined order): calling setGeoJson to update the data and toggling the visibility of another layer between visible and invisible (map?.style?.getLayer(layer)?.setProperties(visibility(Property.NONE)))

@louwers
Copy link
Collaborator

louwers commented May 26, 2024

Does this problem look similar?

Because this happens with MapLibre GL JS

Screen.Recording.2024-05-26.at.15.22.40.mov

@westnordost
Copy link
Collaborator

It looks similar, but there are some key differences:

  • it is not a GeoJson source, i.e. the tiles are not generated by MapLibre. It could just as well be a (temporary) problem in JawgMaps tile generation(?)
  • other data from the same source are still displayed in tiles that have this issue
  • We've tested quite a bit with MapLibre native, and we never observed an issue like this (i.e. that concerned the main mb-tile-source)

@westnordost
Copy link
Collaborator

Unfortunately, #2398 does not solve this.

@westnordost
Copy link
Collaborator

westnordost commented Jul 3, 2024

💰 I am offering a bounty of 500€ to whoever is able to fix this.

This issue blocks the integration of MapLibre into the OSM editor StreetComplete. The app intends to use MapLibre to show and allow to edit POIs directly from OSM data. It blocks integration because if some POIs that do exist in the data are missing from the display, users will think they are missing in OSM and add duplicates over duplicates.


To summarize what we know about this issue so far:

  1. following a call to setGeoJson, some tiles in some zoom levels are not updated, they continue to show whatever was shown in those tiles before (e.g. also nothing).
  2. the issue is hard to reproduce. Once it has been reproduced one time, the issue persists even when consecutive calls to setGeoJson are made to push new data (see posted videos)
  3. So far, only @Helium314 has been able to reproduce this on his Samsung Galaxy A3 2017 (SM-A320FL) with Android 10 / LineageOS 17.1
  4. The issue may be related to or may be even the same as Icons in geojson source randomly vanish depending on zoom level / tile #2372. Unlike this issue, that one is reproducible quite easily on an emulator.
  5. The issue persists with 11.0.2-pre0 and was first observed in 11.0.0-pre4 if I remember correctly. (Doesn't mean that it didn't exist before)
  6. The branch on which MapLibre+StreetComplete can be tested sits here: Replace Tangram with Maplibre streetcomplete/StreetComplete#5693

Update 2024-07-11: The issue is reproducible on fresh install and offline. See #2410 (comment)

@Helium314
Copy link
Contributor Author

Helium314 commented Jul 4, 2024

  1. the issue is hard to reproduce. Once it has been reproduced one time, the issue persists even when consecutive calls to setGeoJson are made to push new data (see posted videos)

Sometimes the issue (almost?) never shows up, and after uninstalling the app and installing again it comes back and I can get into this "bad state" quite often.

  1. So far, only @Helium314 has been able to reproduce this on his Samsung phone (which one is it exactly?)

Galaxy A3 2017 (SM-A320FL) with Android 10 / LineageOS 17.1 (I also tested on some Android 11 variant with the same result).
Maybe you could release pre-release version, with a clear warning, so users could already give feedback and we might be able to find some sort of pattern?

@westnordost
Copy link
Collaborator

westnordost commented Jul 10, 2024

@Helium314 found new information about the issue, most importantly, how to reproduce it reliably, independent of the phone. I will summarize it here.

The issue is only reproducible offline and only on a fresh install. He surmised that it might have something to do with that MapLibre (attempts to) download some data on app start. But definitely, the fault is somewhere in how the offline functionality is implemented.

Reproduction

  1. Build and install StreetComplete from this PR: Replace Tangram with Maplibre streetcomplete/StreetComplete#5693
  2. The issue is only reproducible on a fresh installation. So, if not just installed, delete data and cache.
  3. Go offline. Start the app.
  4. Wait some time (minutes)
  5. Go online, zoom to your location and download the data (menu -> "download data here")
  6. Go offline again
  7. Select an overlay like "Surfaces". See that it is working. Zoom around, pan around, looks fine.
  8. Select the "Addresses" overlay. (Possibly required: Zoom out, zoom in). See that the addresses don't show or only in a few areas.
  9. Switching back to any other overlay, e.g. "Surfaces" will let you observe the issue as shown in the video in the starter post. Switching overlays will retain the buggy behavior.
  10. Going online and then restarting the app will (most likely) make the issue go away.

What's special about the Addresses overlay?

  • it displays text
  • when activated or deactivated, properties of another layer are changed, like this map?.style?.getLayer(someOtherLayer)?.setProperties(visibility(Property.NONE)), which happens at the same time (whether before or after is undefined) as overlaySource.setGeoJson(theData)

@Helium314
Copy link
Contributor Author

The issue is only reproducible offline and only on a fresh install.

Just to clarify: The issue occurs also without fresh install, but it's not properly reproducible. Probably this is because of the offline/online part, which makes appearance of the bug dependent on usage history.

Also, not all of the listed steps might be required. I just managed to reproduce the bug without steps 2 and 3.

@westnordost
Copy link
Collaborator

westnordost commented Jul 17, 2024

Here are some logs.

After step 2 - first start of the app when offline. As to be expected, MapLibre is unable to resolve the host "streetcomplete.app"
2024-07-17 20:59:12.064 31090-31231 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:12.064 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:12.069 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "tile.jawg.io": No address associated with hostname 
2024-07-17 20:59:12.070 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:12.071 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/0/0/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:12.071 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:12.088 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:12.089 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:12.146 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load tile 0/0/0=>0 for source jawg-streets: Unable to resolve host "tile.jawg.io": No address associated with hostname
2024-07-17 20:59:13.083 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:13.084 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:13.085 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:13.090 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:13.090 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:13.091 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:15.116 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:15.116 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:15.116 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:15.116 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:15.117 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:15.117 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:19.148 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:19.149 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:19.149 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:19.149 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:19.149 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:19.151 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:27.205 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:27.205 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:27.205 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:27.206 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:27.206 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:27.206 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:43.298 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:43.298 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 20:59:43.299 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:43.300 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 20:59:43.300 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 20:59:43.301 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 21:00:15.321 31090-31233 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 21:00:15.321 31090-31230 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 21:00:15.323 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:00:15.324 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 21:00:15.326 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:00:15.327 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 21:01:19.434 31090-31353 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 21:01:19.435 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:01:19.438 31090-31355 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "streetcomplete.app": No address associated with hostname 
2024-07-17 21:01:19.438 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:01:19.446 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
2024-07-17 21:01:19.446 31090-31090 Mbgl                    de.westnordost.streetcomplete.debug  E  {tcomplete.debug}[Style]: Failed to load sprite: Unable to resolve host "streetcomplete.app": No address associated with hostname
After step 4 - Going online, zooming in a bit. IMO there is a suspicious whole lot of cancelling requests for glyphs going on but 🤷‍♂️
2024-07-17 21:02:27.071 31090-31090 Mbgl-Conne...tyReceiver de.westnordost.streetcomplete.debug  V  connected - true
2024-07-17 21:02:27.093 31090-31090 Mbgl-Conne...tyReceiver de.westnordost.streetcomplete.debug  V  connected - true
2024-07-17 21:02:27.482 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:27.515 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/streetcomplete.json). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.613 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:27.628 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.655 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:27.655 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.667 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:27.669 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:27.670 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/sprites.json). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.673 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/sprites.png). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.676 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Connection reset 
2024-07-17 21:02:27.677 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62720-62975.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.678 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60416-60671.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.679 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60672-60927.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.679 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60928-61183.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.679 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61184-61439.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.679 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61440-61695.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.680 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.680 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61696-61951.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.680 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61952-62207.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.681 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62208-62463.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.681 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62464-62719.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.681 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.681 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62976-63231.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.681 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  W  Request failed due to a permanent error: Canceled 
2024-07-17 21:02:27.682 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63232-63487.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.682 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63488-63743.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.682 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.682 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.683 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63744-63999.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.683 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.683 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64000-64255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.684 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.684 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.685 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.685 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.685 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.685 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64256-64511.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.685 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64512-64767.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.686 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64768-65023.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.686 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/65024-65279.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.687 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/65280-65535.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:27.689 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.689 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Connection reset 
2024-07-17 21:02:27.689 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.690 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.690 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.692 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:27.707 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket is closed 
2024-07-17 21:02:27.708 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket is closed 
2024-07-17 21:02:56.523 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/1/1/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.525 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/1/0/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.526 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/1/1/1.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.527 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/1/0/1.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.528 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:56.528 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:56.530 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:56.530 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Socket closed 
2024-07-17 21:02:56.854 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:56.862 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/1/2.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.862 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/2/2.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.862 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/1/1.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.864 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  W  Request failed due to a permanent error: stream was reset: CANCEL 
2024-07-17 21:02:56.866 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  W  Request failed due to a permanent error: Canceled 
2024-07-17 21:02:56.881 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:56.884 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/2/1.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:56.904 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:56.907 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/1/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.031 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.263 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/2/2/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.302 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.335 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.451 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/3/4/2.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.452 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/3/4/3.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.452 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/768-1023.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.453 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/3840-4095.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.457 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  W  Request failed due to a permanent error: Canceled 
2024-07-17 21:02:57.458 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  W  Request failed due to a permanent error: Canceled 
2024-07-17 21:02:57.466 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.503 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/3328-3583.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.521 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.531 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.539 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/4864-5119.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.540 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.549 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.554 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/4/8/5.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.557 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.563 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.567 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/4/8/4.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.574 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.579 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/11520-11775.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.588 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/1024-1279.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.595 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.599 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/4/8/6.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.612 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.618 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/3584-3839.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.644 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.683 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.733 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.750 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.762 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.765 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/4608-4863.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.766 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/2816-3071.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.766 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/64256-64511.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.766 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/7680-7935.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.776 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/2304-2559.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.779 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.782 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/5888-6143.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.791 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.794 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.795 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/65024-65279.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.803 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/256-511.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.810 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.814 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.817 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/65024-65279.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.818 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/8192-8447.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.828 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.838 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.846 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/4096-4351.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.849 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.851 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.854 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/1024-1279.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.862 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/512-767.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.866 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/768-1023.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.880 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.883 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.889 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.893 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/512-767.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.894 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/11520-11775.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.899 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:57.899 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/256-511.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:57.906 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.126 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.154 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/1/1/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.159 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.167 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/16/10.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.175 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.181 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/17/10.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.196 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.199 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/16/9.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.206 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.219 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/17/9.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.239 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.251 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/16/11.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:58.254 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:58.261 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/5/17/11.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.122 31090-31090 Mbgl-Conne...tyReceiver de.westnordost.streetcomplete.debug  V  connected - true
2024-07-17 21:02:59.142 31090-31090 Mbgl-Conne...tyReceiver de.westnordost.streetcomplete.debug  V  connected - true
2024-07-17 21:02:59.286 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.313 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/streetcomplete.json). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.379 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.406 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.416 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.419 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.437 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.446 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.446 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/sprites.png). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.446 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.446 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/65280-65535.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.447 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/sprites.json). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.460 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.475 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.476 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64256-64511.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.487 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64768-65023.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.499 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.508 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64512-64767.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.508 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.521 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.524 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63744-63999.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.524 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62720-62975.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.526 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.529 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.534 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63232-63487.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.534 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62208-62463.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.536 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.541 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.547 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/63488-63743.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.554 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.559 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/64000-64255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.560 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62976-63231.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.565 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.568 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.571 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/62464-62719.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.571 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61696-61951.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.575 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.578 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.587 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.589 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61952-62207.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.589 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61440-61695.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.589 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/61184-61439.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.594 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.599 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.607 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.607 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60416-60671.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.607 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60928-61183.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.613 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.621 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.632 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.633 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60160-60415.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.633 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/60672-60927.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.633 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/59392-59647.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.635 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.640 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.647 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.651 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/59904-60159.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.651 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/59648-59903.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.651 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/59136-59391.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.652 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/58880-59135.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.652 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.661 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.670 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.676 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/58624-58879.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.676 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/57856-58111.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.677 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/57600-57855.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.681 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.685 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.695 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.703 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.707 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/58368-58623.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.708 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/58112-58367.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.708 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/56832-57087.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.708 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/57088-57343.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.715 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.716 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.725 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.731 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.737 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/57344-57599.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.738 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/56064-56319.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.738 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/55808-56063.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.738 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/56576-56831.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.741 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.747 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.755 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.769 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.769 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/56320-56575.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.770 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/55296-55551.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.770 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/55552-55807.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.778 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.787 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.797 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.802 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/43776-44031.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.803 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/43008-43263.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.803 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/43520-43775.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.803 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/43264-43519.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.813 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.823 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.826 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/42752-43007.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.826 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/41472-41727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.830 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.843 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.852 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.860 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/41984-42239.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.861 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/42240-42495.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.863 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.874 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.877 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/42496-42751.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.877 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/41728-41983.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.885 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.894 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/40960-41215.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.895 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/41216-41471.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.896 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.915 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.921 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/19712-19967.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.939 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/19456-19711.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.948 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.953 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.968 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.969 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/18944-19199.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.974 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/18432-18687.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:02:59.980 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:02:59.992 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/18688-18943.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.001 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/19200-19455.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.009 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.012 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.022 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/17664-17919.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.037 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.040 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/17408-17663.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.047 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.051 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/18176-18431.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.059 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/17920-18175.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.060 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.066 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.078 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.084 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/17152-17407.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.089 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/16896-17151.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.089 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.097 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/16640-16895.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.105 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/16384-16639.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.112 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.116 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.129 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/16128-16383.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.129 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.136 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/15872-16127.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.144 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/15616-15871.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.146 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.153 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.160 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/15104-15359.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.168 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.172 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/14848-15103.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.181 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.181 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/15360-15615.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.199 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/14336-14591.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.201 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.215 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.235 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.251 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.262 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/14592-14847.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.262 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/14080-14335.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.263 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/13824-14079.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.265 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.296 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.315 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.330 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.351 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/13568-13823.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.356 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/13312-13567.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.356 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.357 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/13056-13311.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.357 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/12800-13055.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.357 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/12544-12799.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.370 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.379 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/12288-12543.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.397 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.406 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.421 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.424 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/12032-12287.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.424 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/11008-11263.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.425 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/11264-11519.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.437 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.447 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.453 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.460 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/11776-12031.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.460 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/10240-10495.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.460 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/10752-11007.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.460 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/10496-10751.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.464 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.468 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.481 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.494 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.499 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/9984-10239.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.500 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/9728-9983.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.500 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.500 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/8704-8959.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.505 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.515 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.532 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.535 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/8960-9215.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.535 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/8448-8703.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.549 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.556 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/9216-9471.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.557 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/8192-8447.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.560 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.576 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/7680-7935.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.579 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.590 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/7936-8191.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.591 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.601 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.606 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.608 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/7424-7679.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.608 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/6656-6911.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.608 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/6912-7167.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.610 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.618 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.625 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/6400-6655.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.633 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.636 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/7168-7423.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.645 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.645 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/6144-6399.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.652 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.654 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/5376-5631.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.662 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/5632-5887.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.666 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.673 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/5888-6143.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.675 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.681 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/5120-5375.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.684 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.700 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/4864-5119.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.701 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.717 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.717 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/4608-4863.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.726 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/4352-4607.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.729 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.738 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/3584-3839.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.749 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.749 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.757 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/3840-4095.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.759 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.766 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/2560-2815.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.768 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.771 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/4096-4351.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.771 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/2816-3071.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.778 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.790 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.793 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/3328-3583.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.805 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/3072-3327.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.809 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.816 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.816 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/2048-2303.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.826 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/2304-2559.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.833 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.841 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/1792-2047.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.842 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.853 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/1536-1791.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.856 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.868 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.869 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Regular%2cNoto%20Regular/1280-1535.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.872 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/64768-65023.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.879 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.881 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.886 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/63488-63743.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.887 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.891 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/65280-65535.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.896 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.899 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/64000-64255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.902 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.909 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/64512-64767.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.918 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.921 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/62976-63231.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.923 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.924 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/63744-63999.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.925 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/63232-63487.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.930 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.932 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.933 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/62720-62975.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.934 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/62464-62719.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.937 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.939 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.939 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/62208-62463.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.940 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/61952-62207.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.948 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.948 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.950 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/61696-61951.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.951 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/61184-61439.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.953 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.954 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/61440-61695.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.956 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.957 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/60928-61183.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.960 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.962 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/60416-60671.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.965 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.968 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/60672-60927.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:00.968 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:00.969 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/60160-60415.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.319 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.352 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.362 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.370 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.387 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.390 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/59904-60159.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.390 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/59392-59647.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.391 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/59648-59903.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.391 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/58624-58879.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.391 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/59136-59391.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.398 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.403 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.416 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.427 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.434 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/58880-59135.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.435 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/58368-58623.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.435 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/58112-58367.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.436 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/57856-58111.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.438 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.443 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/57600-57855.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.447 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.460 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.467 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.468 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/57088-57343.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.469 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/57344-57599.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.476 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/56576-56831.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.479 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.488 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.496 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/56320-56575.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.496 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/56832-57087.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.499 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.510 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.522 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.523 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/56064-56319.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.523 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/55808-56063.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.536 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.544 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/55552-55807.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.545 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/55296-55551.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.548 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.557 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/43776-44031.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.564 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.573 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/43520-43775.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.577 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.585 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/43008-43263.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.587 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.594 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/43264-43519.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.602 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.605 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/42240-42495.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.610 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.616 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/41984-42239.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.619 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.623 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.627 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/42496-42751.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.636 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/42752-43007.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.637 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.646 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/41728-41983.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.646 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.654 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/41216-41471.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.657 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.663 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/40960-41215.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.665 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.675 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/41472-41727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.676 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.699 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/19456-19711.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.706 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.719 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.720 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/19712-19967.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.745 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.768 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/18944-19199.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.775 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.779 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/19200-19455.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.809 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/18688-18943.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.819 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.842 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/17920-18175.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.849 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.876 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/17664-17919.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.888 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.913 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.916 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/18176-18431.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.940 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/18432-18687.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.948 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.973 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/17408-17663.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:01.978 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:01.998 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/16384-16639.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.011 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.035 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/16896-17151.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.048 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.073 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.074 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/15360-15615.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.098 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/16640-16895.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.105 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.127 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.128 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/17152-17407.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.156 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/14336-14591.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.170 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.198 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/16128-16383.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.210 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.250 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/15616-15871.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.255 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.286 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/14592-14847.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.287 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.316 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/15872-16127.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.323 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.340 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.392 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.423 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/14080-14335.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.423 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/14848-15103.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.437 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/13824-14079.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.442 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.483 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/13312-13567.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.491 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.514 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.531 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/15104-15359.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.555 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/13568-13823.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.559 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.585 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.604 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/12544-12799.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.605 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/13056-13311.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.614 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.635 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/12800-13055.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.646 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.669 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/12288-12543.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.674 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.696 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/12032-12287.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.706 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.722 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/11776-12031.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.724 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.735 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/11264-11519.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.735 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.749 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/11008-11263.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.755 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.763 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/10752-11007.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.770 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.778 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/10240-10495.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.789 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.795 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/9984-10239.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.809 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.812 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/10496-10751.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.825 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.832 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/9728-9983.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.838 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.844 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/8960-9215.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.857 31090-31913 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.865 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.870 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.883 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/9216-9471.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.892 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.902 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/8704-8959.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.909 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.928 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/8448-8703.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.932 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.949 31090-31871 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.952 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/7936-8191.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.971 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:02.979 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/7424-7679.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.980 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/6912-7167.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:02.984 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.001 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/0/0/0.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.002 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.021 31090-31914 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.023 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/7168-7423.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.032 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.046 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/3/4/2.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.046 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/6656-6911.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.054 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.066 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.068 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/6400-6655.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.081 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.113 31090-31872 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.114 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/6/33/20.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.115 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/6144-6399.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.130 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.138 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/7/67/41.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.138 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/5632-5887.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.139 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.149 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.172 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.176 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.179 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/8/135/82.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.180 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/5376-5631.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.180 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/5120-5375.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.191 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.219 31090-31898 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.222 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/9/270/165.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.249 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.268 31090-31891 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.283 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.294 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/3072-3327.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.294 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.294 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/10/540/330.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.295 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/4352-4607.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.295 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/11/1080/661.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.296 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/2560-2815.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.313 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.318 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.322 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/2048-2303.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.347 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.361 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.366 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.403 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.420 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/1792-2047.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.421 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/12/2161/1323.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.421 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/14/8644/5292.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.421 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/1280-1535.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.421 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/15/17288/10585.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.421 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Roboto%20Bold%2cNoto%20Bold/1536-1791.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.446 31090-31858 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.453 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/15/17289/10586.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.458 31090-31874 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.467 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/14/8644/5293.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.471 31090-31915 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.476 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/15/17288/10586.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.477 31090-31879 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.492 31090-31907 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.492 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34577/21170.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.498 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/13/4322/2646.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.501 31090-31870 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.507 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/15/17289/10585.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.510 31090-31912 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.514 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34578/21170.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.528 31090-31887 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.533 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34579/21170.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.545 31090-31904 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.552 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34577/21171.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.562 31090-31906 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.567 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34579/21171.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.581 31090-31873 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.588 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34577/21172.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.599 31090-31882 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.604 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34578/21171.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.611 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.618 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:03.620 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34579/21172.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:03.625 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://tile.jawg.io/streets-v2+hillshade-v1/16/34578/21172.pbf?access-token=mL9X4SwxfsAGfojvGiion9hPKuGLKxPbogLyMbtakA2gJ3X88gcVlTSQ7OD6OfbZ). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:27.666 31090-31901 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:27.667 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:03:27.693 31090-31886 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  V  [HTTP] Request was successful (code = 200).
2024-07-17 21:03:27.696 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://streetcomplete.app/map-jawg/[email protected]). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
Step 6 - Going offline again and select an overlay (without text). MapLibre tries to download some glyphs again. This seems suspicious to me, as they should already have been downloaded.
2024-07-17 21:06:48.995 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:06:48.996 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:06:49.008 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:06:50.013 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:06:50.014 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:06:50.026 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:06:52.029 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:06:52.031 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:06:52.050 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:06:56.060 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:06:56.061 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:06:56.078 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:07:04.118 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:04.118 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:04.120 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
After step 7 - Selecting the address overlay. Same behavior and errors as above.
2024-07-17 21:07:46.166 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:46.167 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:46.178 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 9472-9727 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:07:47.199 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:47.199 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:47.204 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 9472-9727 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:07:49.230 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:49.231 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:49.238 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 9472-9727 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:07:52.237 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:52.237 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/0-255.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:52.248 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 0-255 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname
2024-07-17 21:07:53.250 31090-32388 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  I  Request failed due to a connection error: Unable to resolve host "api.jawg.io": No address associated with hostname 
2024-07-17 21:07:53.251 31090-31179 Mbgl-HttpRequest        de.westnordost.streetcomplete.debug  D  [HTTP] This request was cancelled (https://api.jawg.io/glyphs/Open%20Sans%20Regular%2cArial%20Unicode%20MS%20Regular/9472-9727.pbf). This is expected for tiles that were being prefetched but are no longer needed for the map to render.
2024-07-17 21:07:53.267 31090-31199 Mbgl                    de.westnordost.streetcomplete.debug  E  {GLThread 211}[Style]: Failed to load glyph range 9472-9727 for font stack Open Sans Regular,Arial Unicode MS Regular: Unable to resolve host "api.jawg.io": No address associated with hostname

Disclaimer: This time I was actually not able to reproduce the error, maybe I did something wrong in a step (not waiting long enough?). I used the airplane mode to "go offline" this time (as opposed to exit the wifi and turn off mobile data), not sure if that can make any difference..

@Helium314
Copy link
Contributor Author

What I noticed when looking at the offline database (mbgl-offline.db): glyphs (in the resources table) always have null for expires, modified, and etag. Sprites only have null for expires. (tiles always have all 3 non-null)

Resources seem to be correctly linked to offline regions in region_resources table, and they are in resources table. Yet MapLibre wants to download existing resources again.
Can we somehow convince MapLibre that the dowload is not necessary, and it should take data from database if existing?

@louwers
Copy link
Collaborator

louwers commented Aug 8, 2024

@westnordost is offering a bug bounty for this issue.

@westnordost
Copy link
Collaborator

westnordost commented Aug 15, 2024

We have been successful in finding a workaround for the bug, so this removes a bit of urgency from this and we can supply some more information on what likely causes the bug. It is actually a cascade of issues:

  1. When the HTTP response for queried glyphs does not include a cache-control header with a max-age field by the server, MapLibre-native considers them as immediately stale and will try to re-download them at next opportunity.
    This is the correct behavior for a generic HTTP client, however in this use case, it would make sense to assume a certain minimum lifetime (or "forever"), since glyphs generally don't change. So, not really a bug, but suboptimal behavior.

  2. When the HTTP response for queried glyphs results in an error, including a timeout when the device is offline, it apparently overwrites the previously cached glyphs (-> Possible incorrect caching of HTTP errors #2675). MapLibre tries to download assets even if the device is offline.

  3. When preparing an area as an offline region, it will only download the tiles but not the glyphs. This can result in a situation where the glyphs are missing when offline, because glyphs are downloaded per-used-unicode-range on-demand (-> Offline regions don't fully work offline #2724)

  4. Finally, something goes wrong while rendering the tiles when not all necessary glyphs are available beyond the text not displaying correctly - some, not all tiles don't update at all (-> this is this bug, see starter post for how it looks like)

@Helium314
Copy link
Contributor Author

When preparing an area as an offline region, it will only download the tiles but not the glyphs

Actually the glyphs are downloaded as far as I know. Our problem was that the style json included Roboto, but not Open Sans. Since in the overlays (and some other places) we didn't specify a font, MapLibre tried to get the Open Sans glyphs which are not needed by the offline style json and thus not available offline.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
android 💰 bounty bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants