mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-07 20:17:04 +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)) {
|
||||
s8_t *gain = (s8_t*) (data + sizeof(struct eqlz_packet));
|
||||
LOG_INFO("got equalizer %d", len);
|
||||
// update will be done at next opportunity
|
||||
equalizer_set_gain(gain);
|
||||
} else if (!strncmp((char*) data, "loud", 4)) {
|
||||
struct loud_packet *packet = (struct loud_packet*) data;
|
||||
LOG_INFO("got loudness %d", packet->loudness);
|
||||
// update will be done at next opportunity
|
||||
equalizer_set_loudness(packet->loudness);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user