123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef CORE_LOGGING_H
- #define CORE_LOGGING_H
- #include <cstdio>
- enum class LogLevel {
- Disable,
- Error,
- Warning,
- Trace
- };
- extern LogLevel gLogLevel;
- extern FILE *gLogFile;
- using LogCallbackFunc = void(*)(void *userptr, char level, const char *message, int length) noexcept;
- void al_set_log_callback(LogCallbackFunc callback, void *userptr);
- #ifdef __MINGW32__
- [[gnu::format(__MINGW_PRINTF_FORMAT,2,3)]]
- #else
- [[gnu::format(printf,2,3)]]
- #endif
- void al_print(LogLevel level, const char *fmt, ...) noexcept;
- #define TRACE(...) al_print(LogLevel::Trace, __VA_ARGS__)
- #define WARN(...) al_print(LogLevel::Warning, __VA_ARGS__)
- #define ERR(...) al_print(LogLevel::Error, __VA_ARGS__)
- #endif /* CORE_LOGGING_H */
|