remove some un-needed logs

This commit is contained in:
philippe44
2023-08-29 16:46:30 -07:00
parent fd502a01d7
commit aa8554b722

View File

@@ -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 {