From c5d744b2803926f924ae7e0aebdd0f50ac21a568 Mon Sep 17 00:00:00 2001 From: yuni Date: Mon, 17 Jun 2024 01:49:37 +0200 Subject: [PATCH] less debug output when saving config file --- src/var.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/var.rs b/src/var.rs index 30c14a4..20cdcad 100644 --- a/src/var.rs +++ b/src/var.rs @@ -484,7 +484,6 @@ impl Preferences { if let Some(path) = get_prefs_path() { match toml_edit::ser::to_document::(self) { Ok(doc) => { - dbg!(&doc); match fs::write(path.clone(), doc.to_string()) { Ok(_) => { info!("Saved preferences to {path}.");