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

@@ -117,5 +117,5 @@ pub(crate) async fn runner(_interconnect: Interconnect, evt_rx: Receiver<EventMe
}
}
info!("Event thread exited.");
trace!("Event thread exited.");
}