7 #include "../Maths/Mat4.h" 25 void logI(std::string message);
31 void logE(std::string message);
44 void logI(std::string message,
bool printToLog);
51 void logE(std::string message,
bool printToLog);
std::string getCurrentDateAndTime()
Gets the current date and time in the form of a string.
Definition: Logging.cpp:85
void logI(std::string message)
Logs the information message, this prints the message to the log file by default. ...
Definition: Logging.cpp:11
void logE(std::string message)
Logs the error message, this prints the message to the log file by default.
Definition: Logging.cpp:16
Contains the Mat4 structure with functions and overloaded operators. This is row major.
Definition: Mat4.h:15
The namespace for all core code.
Definition: Logging.cpp:5
void logMat4(Maths::Mat4 testMat)
Logs the mat4, this prints the mat4 to the log file by default.
Definition: Logging.cpp:21
void printToLogFile(std::string message)
Prints the message out into the log file.
Definition: Logging.cpp:64
std::string boolToString(bool booleanIn)
Converts a boolean to a string.
Definition: Logging.cpp:97