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