mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-22 13:20:05 +00:00
Build 918 chunk 11: Unconditionally enable LogMsgDebug()
MarkD: This is used in the server code.
This commit is contained in:
@ -166,7 +166,7 @@ void LogMsgV (ELogSeverity severity, const wchar format[], va_list args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
#ifdef HS_DEBUGGING
|
//#ifdef HS_DEBUGGING
|
||||||
void LogMsgDebug (const char format[], ...) {
|
void LogMsgDebug (const char format[], ...) {
|
||||||
ASSERT(format);
|
ASSERT(format);
|
||||||
|
|
||||||
@ -175,10 +175,10 @@ void LogMsgDebug (const char format[], ...) {
|
|||||||
LogMsgV(kLogDebug, format, args);
|
LogMsgV(kLogDebug, format, args);
|
||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
#endif
|
//#endif
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
#ifdef HS_DEBUGGING
|
//#ifdef HS_DEBUGGING
|
||||||
void LogMsgDebug (const wchar format[], ...) {
|
void LogMsgDebug (const wchar format[], ...) {
|
||||||
ASSERT(format);
|
ASSERT(format);
|
||||||
|
|
||||||
@ -187,4 +187,4 @@ void LogMsgDebug (const wchar format[], ...) {
|
|||||||
LogMsgV(kLogDebug, format, args);
|
LogMsgV(kLogDebug, format, args);
|
||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
#endif
|
//#endif
|
||||||
|
@ -114,14 +114,14 @@ void LogUnregisterHandler (FLogHandler callback);
|
|||||||
*
|
*
|
||||||
***/
|
***/
|
||||||
|
|
||||||
#ifdef HS_DEBUGGING
|
//#ifdef HS_DEBUGGING
|
||||||
|
|
||||||
void LogMsgDebug (const char format[], ...);
|
void LogMsgDebug (const char format[], ...);
|
||||||
void LogMsgDebug (const wchar format[], ...);
|
void LogMsgDebug (const wchar format[], ...);
|
||||||
|
|
||||||
#else
|
//#else
|
||||||
|
//
|
||||||
inline void LogMsgDebug (const char *, ...) { }
|
// inline void LogMsgDebug (const char *, ...) { }
|
||||||
inline void LogMsgDebug (const wchar *, ...) { }
|
// inline void LogMsgDebug (const wchar *, ...) { }
|
||||||
|
//
|
||||||
#endif
|
//#endif
|
||||||
|
Reference in New Issue
Block a user