From 5b20c327548625801a7c58159d5aacf1451e009e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Sverre=20Lien=20Sell=C3=A6g?= Date: Tue, 8 Sep 2020 14:52:19 +0200 Subject: [PATCH] remove enabled print --- src/config.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index 941f77e..3fca01c 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -218,7 +218,4 @@ void Config::read(const boost::property_tree::ptree &cfg) { boost::replace_all(plugins_path, "", home_juci_path.string()); plugins.path = plugins_path; plugins.enabled = cfg.get("plugins.enabled"); - if (plugins.enabled) { - std::cout << "Plugins enabled" << std::endl; - } }