mirror of
https://github.com/wiiu-env/AutobootModule.git
synced 2024-11-01 01:25:05 +01:00
38 lines
733 B
C++
38 lines
733 B
C++
#include "logger.h"
|
|
|
|
#ifdef DEBUG
|
|
#include <stdint.h>
|
|
#include <whb/log_cafe.h>
|
|
#include <whb/log_udp.h>
|
|
#include <whb/log_module.h>
|
|
|
|
uint32_t moduleLogInit = false;
|
|
uint32_t cafeLogInit = false;
|
|
uint32_t udpLogInit = false;
|
|
#endif
|
|
|
|
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
|
|
} |