-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
127 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/// \brief Log level | ||
enum LogLevel | ||
{ | ||
DEBUG, | ||
DEBUGLOG, | ||
INFO, | ||
ERROR, | ||
COMMAND, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#pragma once | ||
|
||
#include <coreinit/debug.h> | ||
#include <string.h> | ||
#include <whb/log.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define LOG_APP_TYPE "P" | ||
#define LOG_APP_NAME "homebrew_on_menu" | ||
|
||
#define __FILENAME_X__ (strrchr (__FILE__, '\\') ? strrchr (__FILE__, '\\') + 1 : __FILE__) | ||
#define __FILENAME__ (strrchr (__FILE__, '/') ? strrchr (__FILE__, '/') + 1 : __FILENAME_X__) | ||
|
||
#define LOG(LOG_FUNC, FMT, ARGS...) LOG_EX (LOG_FUNC, "", "", FMT, ##ARGS) | ||
|
||
#define LOG_EX(LOG_FUNC, LOG_LEVEL, LINE_END, FMT, ARGS...) \ | ||
do \ | ||
{ \ | ||
LOG_FUNC ("[(%s)%18s][%23s]%30s@L%04d: " LOG_LEVEL "" FMT "" LINE_END, \ | ||
LOG_APP_TYPE, \ | ||
LOG_APP_NAME, \ | ||
__FILENAME__, \ | ||
__FUNCTION__, \ | ||
__LINE__, \ | ||
##ARGS); \ | ||
} while (0) | ||
|
||
#ifdef DEBUG | ||
|
||
#ifdef VERBOSE_DEBUG | ||
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) LOG (WHBLogPrintf, FMT, ##ARGS) | ||
#else | ||
#define DEBUG_FUNCTION_LINE_VERBOSE(FMT, ARGS...) while (0) | ||
#endif | ||
|
||
#define DEBUG_FUNCTION_LINE(FMT, ARGS...) LOG (WHBLogPrintf, FMT, ##ARGS) | ||
|
||
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...) LOG (WHBLogWritef, FMT, ##ARGS) | ||
|
||
#define DEBUG_FUNCTION_LINE_ERR(FMT, ARGS...) LOG_EX (WHBLogPrintf, "##ERROR## ", "", FMT, ##ARGS) | ||
#define DEBUG_FUNCTION_LINE_WARN(FMT, ARGS...) LOG_EX (WHBLogPrintf, "##WARN ## ", "", FMT, ##ARGS) | ||
#define DEBUG_FUNCTION_LINE_INFO(FMT, ARGS...) LOG_EX (WHBLogPrintf, "##INFO ## ", "", FMT, ##ARGS) | ||
|
||
#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) | ||
|
||
#define DEBUG_FUNCTION_LINE_ERR(FMT, ARGS...) LOG_EX (OSReport, "##ERROR## ", "\n", FMT, ##ARGS) | ||
#define DEBUG_FUNCTION_LINE_WARN(FMT, ARGS...) LOG_EX (OSReport, "##WARN ## ", "\n", FMT, ##ARGS) | ||
#define DEBUG_FUNCTION_LINE_INFO(FMT, ARGS...) LOG_EX (OSReport, "##INFO ## ", "\n", FMT, ##ARGS) | ||
|
||
#endif | ||
|
||
void initLogging (); | ||
|
||
void deinitLogging (); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters