mirror of
https://github.com/wiiu-env/EnvironmentLoader.git
synced 2024-11-01 04:55:05 +01:00
36 lines
727 B
C
36 lines
727 B
C
#ifdef DEBUG
|
|
#include <stdint.h>
|
|
#include <whb/log_cafe.h>
|
|
#include <whb/log_module.h>
|
|
#include <whb/log_udp.h>
|
|
|
|
uint32_t moduleLogInit = false;
|
|
uint32_t cafeLogInit = false;
|
|
uint32_t udpLogInit = false;
|
|
#endif // DEBUG
|
|
|
|
void initLogging() {
|
|
#ifdef DEBUG
|
|
if (!(moduleLogInit = WHBLogModuleInit())) {
|
|
cafeLogInit = WHBLogCafeInit();
|
|
udpLogInit = WHBLogUdpInit();
|
|
}
|
|
#endif // DEBUG
|
|
}
|
|
|
|
void deinitLogging() {
|
|
#ifdef DEBUG
|
|
if (moduleLogInit) {
|
|
WHBLogModuleDeinit();
|
|
moduleLogInit = false;
|
|
}
|
|
if (cafeLogInit) {
|
|
WHBLogCafeDeinit();
|
|
cafeLogInit = false;
|
|
}
|
|
if (udpLogInit) {
|
|
WHBLogUdpDeinit();
|
|
udpLogInit = false;
|
|
}
|
|
#endif // DEBUG
|
|
} |