Functions in assistant_helpers.py log directly to the root logger:
|
logging.debug('AssistRequest: audio_in (%d bytes)', |
|
logging.debug('AssistResponse: %s audio_data (%d bytes)', |
|
logging.debug('AssistResponse: audio_data (%d bytes)', |
|
logging.debug('AssistResponse: %s', resp_copy) |
Could these please be changed to the recommended 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__).…?