hussein-awala opened a new pull request, #36674: URL: https://github.com/apache/airflow/pull/36674
The BaseHook accepts a parameter `logger_name` to override the logger_name in the LoggingMixin. Unfortunately, some of the hooks don't provide this parameter to the parent class, and the only way to override the logger name is doing it on an extra step and overriding a protected class attribute: ```python hook = SomeHook(...) hook._logger_name = "<some name>" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
