diff --git a/src/system.cpp b/src/system.cpp index a32b21f2..32fdfdd7 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -41,6 +41,7 @@ #include #include +#include /* @@ -892,6 +893,8 @@ void openBrowser(const std::string& url) { if (url.empty()) return; + INFO("Opening browser URL %s", url.c_str()); + std::string urlL = url; std::thread t([=] { #if defined ARCH_LIN @@ -914,6 +917,8 @@ void openDirectory(const std::string& path) { if (path.empty()) return; + INFO("Opening directory %s", path.c_str()); + std::string pathL = path; std::thread t([=] { #if defined ARCH_LIN