Unfortunate regression to get Windows ColorCodes working again. Will clean up shortly. (Test On Linux Also)

This commit is contained in:
2024-06-28 14:45:04 -04:00
parent 99c1fe9f4c
commit 83df783e7c
4 changed files with 68 additions and 32 deletions

View File

@@ -90,9 +90,9 @@ namespace jlog
/// logging callback (Event)
/// @note This file is implemented differently per-platform to handle differences in console color handling.
/// @see windows/jlog.cpp linux/jlog.cpp
void log(const std::vector<token> tokens, const std::string& filename);
void log(const std::vector<token> tokens);
void ltlog(const std::vector<token> tokens); // Just for debug purposes
void log(const std::vector<token>& tokens, const std::string& filename);
void log(const std::vector<token>& tokens);
void ltlog(const std::vector<token>& tokens); // Just for debug purposes
#pragma region Generic Formatters