Add standalone web api server, cli handler, authorization, commands

This commit is contained in:
Akkadius
2019-07-07 03:13:04 -05:00
parent 7d71163fa0
commit 78d8b909be
18 changed files with 3749 additions and 18 deletions
-1
View File
@@ -193,7 +193,6 @@ namespace Logs {
OutF(LogSys, Logs::General, Logs::Error, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\
} while (0)
#define LogWarning(message, ...) do {\
if (LogSys.log_settings[Logs::Warning].is_category_enabled == 1)\
OutF(LogSys, Logs::General, Logs::Warning, __FILE__, __func__, __LINE__, message, ##__VA_ARGS__);\