mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
remove some un-needed logs
This commit is contained in:
@@ -56,12 +56,10 @@ static bool handler(u8_t *data, int len){
|
|||||||
|
|
||||||
if (!strncmp((char*) data, "eqlz", 4)) {
|
if (!strncmp((char*) data, "eqlz", 4)) {
|
||||||
s8_t *gain = (s8_t*) (data + sizeof(struct eqlz_packet));
|
s8_t *gain = (s8_t*) (data + sizeof(struct eqlz_packet));
|
||||||
LOG_INFO("got equalizer %d", len);
|
|
||||||
// update will be done at next opportunity
|
// update will be done at next opportunity
|
||||||
equalizer_set_gain(gain);
|
equalizer_set_gain(gain);
|
||||||
} else if (!strncmp((char*) data, "loud", 4)) {
|
} else if (!strncmp((char*) data, "loud", 4)) {
|
||||||
struct loud_packet *packet = (struct loud_packet*) data;
|
struct loud_packet *packet = (struct loud_packet*) data;
|
||||||
LOG_INFO("got loudness %d", packet->loudness);
|
|
||||||
// update will be done at next opportunity
|
// update will be done at next opportunity
|
||||||
equalizer_set_loudness(packet->loudness);
|
equalizer_set_loudness(packet->loudness);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user