From 487b8e458000911c9a82376a5848f73c50d1daff Mon Sep 17 00:00:00 2001 From: emma Date: Sat, 15 Apr 2023 17:22:32 -0400 Subject: [PATCH] removed println macro used for testing --- src/config.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 38e89f6..35fe0fb 100644 --- a/src/config.rs +++ b/src/config.rs @@ -86,7 +86,6 @@ pub struct ThemeWatcher { impl ThemeWatcher { pub fn spawn(styles: Arc>) -> Sender { let themes_dir = get_data_dir().join("themes"); - println!("{:?}", themes_dir); let default_path = themes_dir.join("default.toml"); let (fs_tx, fs_rx) = unbounded(); let (command_tx, command_rx) = unbounded();