Page 1 of 1

ADF_BIT_STREAM messages

Posted: Wed Sep 11, 2019 7:03 am
by vgonet
Hello,

I'm using the ESP-ADF to play MP3 sounds. During the play, I've the following messages:

D (69659) ADF_BIT_STREAM: length = 252, bytenum = 0, bread = 252
D (69659) ADF_BIT_STREAM: length = 252, bytenum = 252
D (69734) ADF_BIT_STREAM: length = 252, bytenum = 0, bread = 252
D (69734) ADF_BIT_STREAM: length = 252, bytenum = 252
D (69772) ADF_BIT_STREAM: length = 288, bytenum = 0, bread = 288

How can I remove these messages.

Best regards.
Vincent

Re: ADF_BIT_STREAM messages

Posted: Mon Sep 23, 2019 2:33 am
by jason.mao
Hi vgonet
This is because of your project debug level set` ESP_LOG_DEBUG`, please call `esp_log_level_set("*", ESP_LOG_INFO);` in your main entry.

Re: ADF_BIT_STREAM messages

Posted: Mon Sep 23, 2019 6:54 am
by vgonet
Hi jason.mao,

Thank you very much for your answer.
Best regards