2020-04-28 14:43:07 +02:00
|
|
|
#pragma once
|
2020-05-17 19:05:51 +02:00
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
#include <whb/log.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-01-23 22:16:51 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
#define __FILENAME_X__ (strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
|
|
|
|
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILENAME_X__)
|
|
|
|
|
2022-01-24 18:58:12 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...)do { \
|
|
|
|
WHBLogPrintf("[%23s]%30s@L%04d: " FMT "",__FILENAME__,__FUNCTION__, __LINE__, ## ARGS); \
|
|
|
|
} while (0)
|
|
|
|
|
2021-09-17 16:22:54 +02:00
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...)do { \
|
|
|
|
WHBLogWritef("[%23s]%30s@L%04d: " FMT "",__FILENAME__,__FUNCTION__, __LINE__, ## ARGS); \
|
|
|
|
} while (0)
|
|
|
|
|
2022-01-23 22:16:51 +01:00
|
|
|
#else
|
|
|
|
|
2022-01-24 18:58:12 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
|
|
|
|
2022-01-23 22:16:51 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) while (0)
|
|
|
|
|
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) while (0)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void initLogging();
|
|
|
|
|
|
|
|
void deinitLogging();
|
|
|
|
|
2020-04-28 14:43:07 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|