mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-10-31 21:35:07 +01:00
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
#pragma once
|
|
|
|
#include <string.h>
|
|
#include <whb/log.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define __FILENAME_X__ (strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
|
|
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILENAME_X__)
|
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) \
|
|
do { \
|
|
WHBLogPrintf("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
|
} while (0)
|
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) \
|
|
do { \
|
|
WHBLogWritef("[%23s]%30s@L%04d: " FMT "", __FILENAME__, __FUNCTION__, __LINE__, ##ARGS); \
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0)
|
|
|
|
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) while (0)
|
|
|
|
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) while (0)
|
|
|
|
#endif
|
|
|
|
void initLogging();
|
|
|
|
void deinitLogging();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|