Driver: Reduce logging level in general (#48)

This change reduces many log levels to debug, particularly where errors are likely to be triggered by undocumented Discord messages or by threads exiting in an unpredictable way. This also reduces the task entry/exit messages to `trace`.

This PR has been tested via `cargo make ready`, and by manually inspecting logs at `debug` and `info` levels running `examples/serenity/voice`.
This commit is contained in:
Kyle Simpson
2021-03-22 19:00:19 +00:00
committed by GitHub
parent 1fcc8c0eb9
commit a3f86ad34d
8 changed files with 31 additions and 38 deletions

View File

@@ -13,7 +13,7 @@ use tokio_compat::{
net::udp::SendHalf,
time::{timeout_at, Instant},
};
use tracing::{error, info, instrument, trace};
use tracing::{error, instrument, trace};
struct UdpTx {
ssrc: u32,
@@ -65,7 +65,7 @@ impl UdpTx {
#[cfg(not(feature = "tokio-02-marker"))]
#[instrument(skip(udp_msg_rx))]
pub(crate) async fn runner(udp_msg_rx: Receiver<UdpTxMessage>, ssrc: u32, udp_tx: Arc<UdpSocket>) {
info!("UDP transmit handle started.");
trace!("UDP transmit handle started.");
let mut txer = UdpTx {
ssrc,
@@ -75,13 +75,13 @@ pub(crate) async fn runner(udp_msg_rx: Receiver<UdpTxMessage>, ssrc: u32, udp_tx
txer.run().await;
info!("UDP transmit handle stopped.");
trace!("UDP transmit handle stopped.");
}
#[cfg(feature = "tokio-02-marker")]
#[instrument(skip(udp_msg_rx))]
pub(crate) async fn runner(udp_msg_rx: Receiver<UdpTxMessage>, ssrc: u32, udp_tx: SendHalf) {
info!("UDP transmit handle started.");
trace!("UDP transmit handle started.");
let mut txer = UdpTx {
ssrc,
@@ -91,5 +91,5 @@ pub(crate) async fn runner(udp_msg_rx: Receiver<UdpTxMessage>, ssrc: u32, udp_tx
txer.run().await;
info!("UDP transmit handle stopped.");
trace!("UDP transmit handle stopped.");
}