add spantrace debug logs

This commit is contained in:
Lucy Cifferello
2021-10-12 17:04:36 -06:00
committed by Aiden McClelland
parent 0a4f60ae26
commit 7adb66cf4c
10 changed files with 27 additions and 6 deletions

View File

@@ -138,7 +138,8 @@ impl Drop for SoundInterface {
let guard = self.0.take();
tokio::spawn(async move {
if let Err(e) = tokio::fs::write(&*UNEXPORT_FILE, "0").await {
tracing::error!("Failed to Unexport Sound Interface: {}", e)
tracing::error!("Failed to Unexport Sound Interface: {}", e);
tracing::debug!("{:?}", e);
}
if let Some(mut guard) = guard {
if let Some(lock) = guard.take() {