commit 91d924e2ff7408d4e6b66378d7af3bf48cef4a69 from: Hugo Osvaldo Barrera via: Thomas Böhler date: Wed Oct 8 18:46:10 2025 UTC Squelch warning on bad usage of Debug formatting commit - a88579e9c2373b9d4e1ff14b84baee4d37146279 commit + 91d924e2ff7408d4e6b66378d7af3bf48cef4a69 blob - 5ff762738d4a6ceacce92e80ba68355c6dce5e97 blob + fc4ad428d19e6327b3f5a4c0af24848ea1dae6fc --- src/cli.rs +++ src/cli.rs @@ -86,8 +86,8 @@ impl Cli { let data_dir = data_dir(); if !PathBuf::from(&data_dir).exists() { debug!( - "No data directory exists, creating a new one: {:?}", - &data_dir + "No data directory exists, creating a new one: {}", + &data_dir.to_string_lossy() ); std::fs::create_dir(&data_dir).with_context(|_| IoSnafu { path: data_dir.display().to_string(),