2020-12-26 14:17:50 +01:00
|
|
|
#pragma once
|
2022-01-23 21:43:54 +01:00
|
|
|
|
2022-04-22 22:55:53 +02:00
|
|
|
#include <coreinit/debug.h>
|
2022-01-23 21:43:54 +01:00
|
|
|
#include <string.h>
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <whb/log.h>
|
2022-01-23 21:43:54 +01:00
|
|
|
|
2019-08-15 10:45:18 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-04-22 22:47:41 +02:00
|
|
|
#define __FILENAME_X__ (strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
|
|
|
|
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILENAME_X__)
|
2019-08-15 10:45:18 +02:00
|
|
|
|
2022-04-22 22:47:41 +02:00
|
|
|
#ifdef DEBUG
|
2019-08-15 10:45:18 +02:00
|
|
|
|
2022-04-22 22:47:41 +02:00
|
|
|
#ifdef VERBOSE_DEBUG
|
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) \
|
|
|
|
do { \
|
|
|
|
WHBLogPrintf("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
|
|
|
} while (0)
|
|
|
|
#else
|
2022-01-23 21:43:54 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
2022-04-22 22:47:41 +02:00
|
|
|
#endif
|
2019-08-15 10:45:18 +02:00
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) \
|
|
|
|
do { \
|
|
|
|
WHBLogPrintf("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
2021-09-25 14:26:18 +02:00
|
|
|
} while (0)
|
2020-05-08 11:17:24 +02:00
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) \
|
|
|
|
do { \
|
|
|
|
WHBLogWritef("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
2021-09-25 14:26:18 +02:00
|
|
|
} while (0)
|
2019-08-15 10:45:18 +02:00
|
|
|
|
2022-04-22 22:55:53 +02:00
|
|
|
#define DEBUG_FUNCTION_LINE_ERR(FMT, ARGS...) \
|
|
|
|
do { \
|
|
|
|
WHBLogPrintf("[%23s]%30s@L%04d: ##ERROR## " FMT "\n", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
|
|
|
} while (0)
|
|
|
|
|
2022-01-23 21:43:54 +01:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) while (0)
|
2022-01-23 21:43:54 +01:00
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) while (0)
|
2022-01-23 21:43:54 +01:00
|
|
|
|
2022-04-22 22:55:53 +02:00
|
|
|
#define DEBUG_FUNCTION_LINE_ERR(FMT, ARGS...) \
|
|
|
|
do { \
|
|
|
|
OSReport("[%23s]%30s@L%04d: ##ERROR## " FMT "\n", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
|
|
|
} while (0)
|
|
|
|
|
2022-01-23 21:43:54 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void initLogging();
|
|
|
|
|
|
|
|
void deinitLogging();
|
|
|
|
|
2019-08-15 10:45:18 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-01-23 21:43:54 +01:00
|
|
|
#endif
|