googlesamples/assistant-sdk-python

assistant_helpers.py logs to root

Lx opened this issue · 0 comments

Lx commented

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)',

Could these please be changed to the recommended logging.getLogger(__name__).…?