Log all tracing output just in case

This commit is contained in:
Andrej Mihajlov
2025-06-04 11:40:56 +02:00
parent d7779df1b7
commit f5846d5bc2
3 changed files with 7 additions and 1 deletions
Generated
+1
View File
@@ -9545,6 +9545,7 @@ dependencies = [
"tempfile",
"tokio",
"tracing",
"tracing-subscriber",
"windows 0.61.1",
]
+2 -1
View File
@@ -31,4 +31,5 @@ windows = { version = "0.61", features = [
] }
[dev-dependencies]
tempfile = { workspace = true }
tempfile.workspace = true
tracing-subscriber.workspace = true
+4
View File
@@ -141,6 +141,10 @@ mod tests {
#[tokio::test]
async fn test_wait_close() {
tracing_subscriber::fmt()
.with_max_level(tracing::Level::TRACE)
.init();
let temp_dir = tempfile::tempdir().unwrap();
let database_path = temp_dir.path().join("storage.db");