From c0be1e2fd8221a362252c379811880224eee12a2 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 5 May 2023 15:42:02 +0100 Subject: [PATCH] configmanager: remove useless log from handleWorkspaceRule --- src/config/ConfigManager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index cc254eeb..d1f21915 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -1039,7 +1039,6 @@ void CConfigManager::handleWorkspaceRules(const std::string& command, const std: auto assignRule = [&](std::string rule) { size_t delim = std::string::npos; - Debug::log(INFO, "found workspacerule: %s", rule.c_str()); if ((delim = rule.find("gapsin:")) != std::string::npos) wsRule.gapsIn = std::stoi(rule.substr(delim + 7)); else if ((delim = rule.find("gapsout:")) != std::string::npos)