| @@ -41,6 +41,7 @@ | |||||
| #include <system.hpp> | #include <system.hpp> | ||||
| #include <string.hpp> | #include <string.hpp> | ||||
| #include <logger.hpp> | |||||
| /* | /* | ||||
| @@ -892,6 +893,8 @@ void openBrowser(const std::string& url) { | |||||
| if (url.empty()) | if (url.empty()) | ||||
| return; | return; | ||||
| INFO("Opening browser URL %s", url.c_str()); | |||||
| std::string urlL = url; | std::string urlL = url; | ||||
| std::thread t([=] { | std::thread t([=] { | ||||
| #if defined ARCH_LIN | #if defined ARCH_LIN | ||||
| @@ -914,6 +917,8 @@ void openDirectory(const std::string& path) { | |||||
| if (path.empty()) | if (path.empty()) | ||||
| return; | return; | ||||
| INFO("Opening directory %s", path.c_str()); | |||||
| std::string pathL = path; | std::string pathL = path; | ||||
| std::thread t([=] { | std::thread t([=] { | ||||
| #if defined ARCH_LIN | #if defined ARCH_LIN | ||||