|
KarmaEngine
Game Engine for practical learning and research purposes
|
This file contains the Log class. I want to imagine the Log pronounciation match with that of that https://youtu.be/dZr-53LAlOw?list=PLlrATfBNZ98dC-V-N3m0Go4deliWHPFwT&t=15. More...
#include "spdlog/spdlog.h"#include "spdlog/sinks/stdout_color_sinks.h"#include "spdlog/fmt/ostr.h"

Go to the source code of this file.
Classes | |
| class | Karma::Log |
| Karma's logging class with the logger like so. More... | |
Macros | |
| #define | KR_CORE_ERROR(...) |
| A macro for logging error in Core part. | |
| #define | KR_CORE_WARN(...) |
| A macro for logging warning in Core part. | |
| #define | KR_CORE_INFO(...) |
| A macro for logging information in the Core part. | |
| #define | KR_CORE_TRACE(...) |
| A macro for logging trace in the Core part. | |
| #define | KR_CORE_FATAL(...) |
| A macro for logging fatal message in the Core part. | |
| #define | KR_ERROR(...) |
| A macro for logging error in the Client part. | |
| #define | KR_WARN(...) |
| A macro for logging warning in the Client part. | |
| #define | KR_INFO(...) |
| A macro for logging information in the Client part. | |
| #define | KR_TRACE(...) |
| A macro for logging trace in the Client part. | |
| #define | KR_FATAL(...) |
| A macro for logging fatal message in the Client part. | |
This file contains the Log class. I want to imagine the Log pronounciation match with that of that https://youtu.be/dZr-53LAlOw?list=PLlrATfBNZ98dC-V-N3m0Go4deliWHPFwT&t=15.
| #define KR_CORE_ERROR | ( | ... | ) |
A macro for logging error in Core part.
| #define KR_CORE_FATAL | ( | ... | ) |
A macro for logging fatal message in the Core part.
| #define KR_CORE_INFO | ( | ... | ) |
A macro for logging information in the Core part.
| #define KR_CORE_TRACE | ( | ... | ) |
A macro for logging trace in the Core part.
| #define KR_CORE_WARN | ( | ... | ) |
A macro for logging warning in Core part.
| #define KR_ERROR | ( | ... | ) |
A macro for logging error in the Client part.
| #define KR_FATAL | ( | ... | ) |
A macro for logging fatal message in the Client part.
| #define KR_INFO | ( | ... | ) |
A macro for logging information in the Client part.
| #define KR_TRACE | ( | ... | ) |
A macro for logging trace in the Client part.
| #define KR_WARN | ( | ... | ) |
A macro for logging warning in the Client part.