Marc Panzirsch
11/06/2024, 10:49 AMimport logging
...
LOGGER = logging.getLogger("tap-name")
...
<http://LOGGER.info|LOGGER.info>(msg)
With singer-sdk 3.9 this does not work anymore and we get the error:
...
singer_sdk\streams\core.py", line 131, in __init__
self.logger: logging.Logger = tap.logger.getChild(self.name)
AttributeError: 'mappingproxy' object has no attribute 'logger'
Any ideas?Edgar Ramírez (Arch.dev)
11/06/2024, 5:11 PM__init__
method?Marc Panzirsch
11/07/2024, 8:18 AM___init___
method.