mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Started integration of css changes from uikit
This commit is contained in:
@@ -75,7 +75,7 @@ void Server::handle_get(http_request request)
|
||||
|
||||
/* Get the logs from the logger */
|
||||
auto logs = json::value::object();
|
||||
logsToJSON(logs); // By reference, for thread safety
|
||||
getLogsJSON(logs); // By reference, for thread safety
|
||||
|
||||
answer[L"airbases"] = airbasesData;
|
||||
answer[L"bullseye"] = bullseyeData;
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
void DllExport log(const std::string& sMessage);
|
||||
void DllExport log(const std::wstring& sMessage);
|
||||
void DllExport logsToJSON(json::value& json);
|
||||
void DllExport getLogsJSON(json::value& json);
|
||||
|
||||
@@ -14,7 +14,7 @@ void log(const wstring& message)
|
||||
LOGGER->log(message);
|
||||
}
|
||||
|
||||
void logsToJSON(json::value& json)
|
||||
void getLogsJSON(json::value& json)
|
||||
{
|
||||
LOGGER->toJSON(json);
|
||||
}
|
||||
Reference in New Issue
Block a user