module/network: log signal strength and TX/RX bitrates at debug level

This commit is contained in:
Daniel Eklöf 2022-06-06 14:30:22 +02:00
parent 9353aa14fe
commit eb5cb9869c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1062,7 +1062,7 @@ parse_genl_reply(struct module *mod, const struct nlmsghdr *hdr, size_t len)
foreach_nlattr(mod, genl, msg_size, &handle_nl80211_new_station);
}
LOG_INFO("%s: signal: %d dBm, RX=%u Mbit/s, TX=%u Mbit/s",
LOG_DBG("%s: signal: %d dBm, RX=%u Mbit/s, TX=%u Mbit/s",
m->iface, m->signal_strength_dbm,
m->rx_bitrate / 1000 / 1000,
m->tx_bitrate / 1000 / 1000);