Logging Functions¶
-
group
LoggingFunctions This group consists of all the functions used for logging.
Functions
-
void
LogInfo(const std::string §ion, const std::string &log)¶ Logs data with level
Infoto the output stream in the format:- Parameters
section: The section from where the log is comming. Example - “Renderer::Rasterizer”, “Parser” etc.log: The content of the log.
-
void
LogWarning(const std::string §ion, const std::string &log)¶ Logs data with level
Warningto the output stream in the format:- Parameters
section: The section from where the log is comming. Example - “Renderer::Rasterizer”, “Parser” etc.log: The content of the log.
-
void
LogError(const std::string §ion, const std::string &log)¶ Logs data with level
Errorto the output stream in the format:- Parameters
section: The section from where the log is comming. Example - “Renderer::Rasterizer”, “Parser” etc.log: The content of the log.
-
void
LogFatalError(const std::string §ion, const std::string &log)¶ Logs data with level
Errorto the output stream in the format:and performs aSHRN_DEBUG_BREAK().- Parameters
section: The section from where the log is comming. Example - “Renderer::Rasterizer”, “Parser” etc.log: The content of the log.
-
void