From 7ef068fc5b41f08ab360da7c46fe44f1ac70c48e Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Tue, 27 Oct 2020 16:05:20 +0100 Subject: [PATCH] removed messages when opening or closing --- plugin.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.hpp b/plugin.hpp index 7fa6c58..82a39fd 100644 --- a/plugin.hpp +++ b/plugin.hpp @@ -62,7 +62,7 @@ namespace sc { plugin(const std::string& path) : _path {path} { _plugin = ::dlopen(path.c_str(), RTLD_LAZY); - std::cerr << path << (_plugin ? "" : " not") << " opened\n"; + //std::cerr << path << (_plugin ? "" : " not") << " opened\n"; const char* err {::dlerror()}; if (err) std::cerr << err << '\n'; if (_plugin) { @@ -77,7 +77,7 @@ namespace sc { if (_plugin) { ::dlclose(_plugin); _plugin = nullptr; - std::cerr << _path << " closed\n"; + //std::cerr << _path << " closed\n"; } }