From 68fcf79cf5b9f752ee13fa17e1784a1920a0b101 Mon Sep 17 00:00:00 2001 From: J-D-K Date: Fri, 22 Aug 2025 09:08:52 -0400 Subject: [PATCH] Remove debug line. --- source/appstates/SettingsState.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/appstates/SettingsState.cpp b/source/appstates/SettingsState.cpp index 3645660..cfc6a00 100644 --- a/source/appstates/SettingsState.cpp +++ b/source/appstates/SettingsState.cpp @@ -252,7 +252,6 @@ void SettingsState::toggle_trash_folder() { const bool trashEnabled = config::get_by_key(config::keys::ENABLE_TRASH_BIN); const fslib::Path trashPath{config::get_working_directory() / "_TRASH_"}; - logger::log("%s", trashPath.full_path()); config::toggle_by_key(config::keys::ENABLE_TRASH_BIN); if (trashEnabled) { error::fslib(fslib::delete_directory_recursively(trashPath)); }