Ignore specific error

Hello,

I have an error in the log I would like to ignore, however as the component looks quite general (homeassistant.helpers.entity) I would avoid shutting it down for other error than this one specifically.

I don’t find any options in the configuration of the Logger or in the forum to be more specific than the component name displayed in bracket, does anyone have a solution for this ?

Here is the error :

2020-04-26 18:39:43 ERROR (MainThread) [**homeassistant.helpers.entity**] Update for sensor.bt_home_hub_6_0a_packets_received fails
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 279, in async_update_ha_state
    await self.async_device_update()
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 474, in async_device_update
    await self.async_update()
  File "/usr/src/homeassistant/homeassistant/components/upnp/sensor.py", line 157, in async_update
    self._state = await self._device.async_get_total_packets_received()
  File "/usr/src/homeassistant/homeassistant/components/upnp/device.py", line 160, in async_get_total_packets_received
    return await self._igd_device.async_get_total_packets_received()
  File "/usr/local/lib/python3.7/site-packages/async_upnp_client/profiles/igd.py", line 110, in async_get_total_packets_received
    result = await action.async_call()
  File "/usr/local/lib/python3.7/site-packages/async_upnp_client/client.py", line 515, in async_call
    (status_code, response_body))
async_upnp_client.client.UpnpError: Error during async_call(), status: 403, body: <html><body><h1>403 Forbidden</h1></body></html>

Thank you