WUMSLoader/relocator/src/utils/logger.h

43 lines
1.4 KiB
C
Raw Normal View History

2020-04-28 14:43:07 +02:00
#ifndef __LOGGER_H_
#define __LOGGER_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <string.h>
2021-04-17 11:53:51 +02:00
void log_init();
2020-05-17 19:05:51 +02:00
2021-04-17 11:53:51 +02:00
void log_deinit(void);
2020-05-17 19:05:51 +02:00
2021-04-17 11:53:51 +02:00
void log_print(const char *str);
void log_printf(const char *format, ...);
2020-05-17 19:05:51 +02:00
2020-04-28 14:43:07 +02:00
void OSFatal_printf(const char *format, ...);
#define __FILENAME_X__ (strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
2022-02-04 21:44:03 +01:00
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILENAME_X__)
2020-04-28 14:43:07 +02:00
2022-02-04 21:44:03 +01:00
#define OSFATAL_FUNCTION_LINE(FMT, ARGS...) \
do { \
OSFatal_printf("[%s]%s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
2020-04-28 14:43:07 +02:00
} while (0)
2022-02-04 21:44:03 +01:00
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) \
do { \
log_printf("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
2020-04-28 14:43:07 +02:00
} while (0)
2022-02-04 21:44:03 +01:00
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) \
do { \
log_printf("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
2021-09-17 16:22:54 +02:00
} while (0)
2021-04-01 00:41:13 +02:00
2020-04-28 14:43:07 +02:00
#ifdef __cplusplus
}
#endif
#endif