This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Description
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__).…?