Made logger more platform agnostic. Hopefully supporting Windows properly for the message formatter functions.
This commit is contained in:
@@ -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(std::vector<token> tokens, const std::string& filename);
|
||||
void log(std::vector<token> tokens);
|
||||
void ltlog(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
|
||||
|
||||
|
Reference in New Issue
Block a user