| 14 | }; |
| 15 | |
| 16 | void Log(FSecure::C3::LogMessage const& message, std::string_view sender) |
| 17 | { |
| 18 | // Synchronize and show message on screen. |
| 19 | static std::mutex mutex; |
| 20 | std::lock_guard lock(mutex); |
| 21 | std::cout << FSecure::C3::Utils::ConvertLogMessageToConsoleText(OBF("Node"), message, sender) << std::endl; |
| 22 | } |
| 23 | |
| 24 | /// Entry point of the application. |
| 25 | /// @param argc number of program arguments. |
no outgoing calls
no test coverage detected