Can I setup logging to not show Tracebacks?

Context: I have configured different levels of logging depending on the modules but I cannot get rid of the Tracebacks.

logger:
  default: warning
  logs:
    custom_components.pyscript.file: info
    custom_components.pyscript.scripts: info
    custom_components.pyscript.scripts.automation.meross.meross: info
    # custom_components.pyscript.scripts.automation.volets: debug
    homeassistant.helpers.template: error
    homeassistant.components.http: error

I have nice consistent logs that correspond to the log level, except that some of them are “augmented” by Tracebacks - I do not want to have these.

domotique-hass-1  | 2022-12-16 10:46:46.756 ERROR (MainThread) [custom_components.localtuya.common] [bf4...dek] Connect to 192.168.10.26 failed
domotique-hass-1  | Traceback (most recent call last):
domotique-hass-1  |   File "/config/custom_components/localtuya/common.py", line 186, in _make_connection
domotique-hass-1  |     self._interface = await pytuya.connect(
domotique-hass-1  |   File "/config/custom_components/localtuya/pytuya/__init__.py", line 704, in connect
domotique-hass-1  |     _, protocol = await loop.create_connection(
domotique-hass-1  |   File "/usr/local/lib/python3.10/asyncio/base_events.py", line 1064, in create_connection
domotique-hass-1  |     raise exceptions[0]
domotique-hass-1  |   File "/usr/local/lib/python3.10/asyncio/base_events.py", line 1049, in create_connection
domotique-hass-1  |     sock = await self._connect_sock(
domotique-hass-1  |   File "/usr/local/lib/python3.10/asyncio/base_events.py", line 960, in _connect_sock
domotique-hass-1  |     await self.sock_connect(sock, address)
domotique-hass-1  |   File "/usr/local/lib/python3.10/asyncio/selector_events.py", line 500, in sock_connect
domotique-hass-1  |     return await fut
domotique-hass-1  |   File "/usr/local/lib/python3.10/asyncio/selector_events.py", line 535, in _sock_connect_cb
domotique-hass-1  |     raise OSError(err, f'Connect call failed {address}')
domotique-hass-1  | OSError: [Errno 113] Connect call failed ('192.168.10.26', 6668)

How can I configure HA to not display Tracebacks?