WTH Cannot log api respons from "rest" platform?

Hello, I’ve created a simple rest platform, but sometimes api returns errors (with error messages). I would like to read these error messages, is it possible? HA logs are very generic and says nothing. e.g.

Logger: homeassistant.components.rest.data
Source: components/rest/data.py:74
Integration: RESTful (documentation, issues)
First occurred: 10:12:06 PM (1 occurrences)
Last logged: 10:12:06 PM

Error fetching data: https://airapi.airly.eu/v2/measurements/point?lat=50.0845&lng=20.007 failed with [Errno -3] Try again

Code:

  - platform: rest
    resource: https://airapi.airly.eu/v2/measurements/point?lat=50.0845&lng=20.007
    name: "newairly25_rest"
    scan_interval: 960
    headers:
      apikey:
    value_template: "{{ value_json['current']['values'][1]['value'] }}"

That is the error message.

[errno-3] Try Again

You’d just get that message twice.

To clarify further, just Google that message and you’ll see it’s a generic error message that comes from the rest python library.

Thanks, do you have an idea what can cause this error? I have it only with AIRLY API, all other rest controllers works fine. Built in Airly integration also have the same problem… It starter after I replaced my router with another one… My diagram looks like…

That was Netgear’s software fault. Installing openWRT solved this problem.