Functions in `assistant_helpers.py` log directly to the `root` logger: https://github.com/googlesamples/assistant-sdk-python/blob/ce76c508fdf07667849689e01a294db2c6e1a674/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py#L30 https://github.com/googlesamples/assistant-sdk-python/blob/ce76c508fdf07667849689e01a294db2c6e1a674/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py#L47 https://github.com/googlesamples/assistant-sdk-python/blob/ce76c508fdf07667849689e01a294db2c6e1a674/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py#L51 https://github.com/googlesamples/assistant-sdk-python/blob/ce76c508fdf07667849689e01a294db2c6e1a674/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py#L54 Could these please be changed to the [recommended](https://docs.python.org/3/library/logging.html#logger-objects) `logging.getLogger(__name__).…`?
Functions in
assistant_helpers.pylog directly to therootlogger:assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py
Line 30 in ce76c50
assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py
Line 47 in ce76c50
assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py
Line 51 in ce76c50
assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc/assistant_helpers.py
Line 54 in ce76c50
Could these please be changed to the recommended
logging.getLogger(__name__).…?