mirror of
https://github.com/wiiu-env/FunctionPatcherModule.git
synced 2025-01-07 23:50:44 +01:00
Move logging logic into a seperate file
This commit is contained in:
parent
ffd4c4f894
commit
2db7befb4b
36
source/logger.c
Normal file
36
source/logger.c
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#ifdef DEBUG
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <whb/log_udp.h>
|
||||||
|
#include <whb/log_cafe.h>
|
||||||
|
#include <whb/log_module.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
|
||||||
|
}
|
@ -32,6 +32,10 @@ extern "C" {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void initLogging();
|
||||||
|
|
||||||
|
void deinitLogging();
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,46 +1,19 @@
|
|||||||
#include <wums.h>
|
#include <wums.h>
|
||||||
#ifdef DEBUG
|
#include "logger.h"
|
||||||
#include <whb/log_udp.h>
|
|
||||||
#include <whb/log_cafe.h>
|
|
||||||
#include <whb/log_module.h>
|
|
||||||
#endif // DEBUG
|
|
||||||
|
|
||||||
#include "function_patcher.h"
|
#include "function_patcher.h"
|
||||||
|
|
||||||
WUMS_MODULE_EXPORT_NAME("homebrew_functionpatcher");
|
WUMS_MODULE_EXPORT_NAME("homebrew_functionpatcher");
|
||||||
WUMS_MODULE_SKIP_INIT_FINI();
|
WUMS_MODULE_SKIP_INIT_FINI();
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
uint32_t moduleLogInit = false;
|
|
||||||
uint32_t cafeLogInit = false;
|
|
||||||
uint32_t udpLogInit = false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
WUMS_APPLICATION_STARTS() {
|
WUMS_APPLICATION_STARTS() {
|
||||||
#ifdef DEBUG
|
initLogging();
|
||||||
if (!(moduleLogInit = WHBLogModuleInit())) {
|
|
||||||
cafeLogInit = WHBLogCafeInit();
|
|
||||||
udpLogInit = WHBLogUdpInit();
|
|
||||||
}
|
|
||||||
#endif // DEBUG
|
|
||||||
FunctionPatcherResetLibHandles();
|
FunctionPatcherResetLibHandles();
|
||||||
}
|
}
|
||||||
|
|
||||||
WUMS_APPLICATION_REQUESTS_EXIT() {
|
WUMS_APPLICATION_REQUESTS_EXIT() {
|
||||||
#ifdef DEBUG
|
deinitLogging();
|
||||||
if (moduleLogInit) {
|
|
||||||
WHBLogModuleDeinit();
|
|
||||||
moduleLogInit = false;
|
|
||||||
}
|
|
||||||
if (cafeLogInit) {
|
|
||||||
WHBLogCafeDeinit();
|
|
||||||
cafeLogInit = false;
|
|
||||||
}
|
|
||||||
if (udpLogInit) {
|
|
||||||
WHBLogUdpDeinit();
|
|
||||||
udpLogInit = false;
|
|
||||||
}
|
|
||||||
#endif // DEBUG
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WUMS_EXPORT_FUNCTION(FunctionPatcherPatchFunction);
|
WUMS_EXPORT_FUNCTION(FunctionPatcherPatchFunction);
|
||||||
|
Loading…
Reference in New Issue
Block a user