From 89f76e5687425c8b651e977acfebd1a384113ec4 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Mon, 13 Jul 2015 23:04:59 -0700 Subject: [PATCH] Remove unused debug pnAcLog functions. --- .../pnAsyncCore/Private/pnAcLog.cpp | 24 ------------------- .../NucleusLib/pnAsyncCore/Private/pnAcLog.h | 18 -------------- 2 files changed, 42 deletions(-) diff --git a/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.cpp b/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.cpp index 418e6803..248d240a 100644 --- a/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.cpp +++ b/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.cpp @@ -97,27 +97,3 @@ void LogMsgV (ELogSeverity severity, const wchar_t *format, va_list args) { plStatusLog::AddLineS("OLD_ASYNC_LOG.log", to_log); delete[] to_log; } - -//============================================================================ -#ifdef HS_DEBUGGING -void LogMsgDebug (const char *format, ...) { - ASSERT(format); - - va_list args; - va_start(args, format); - LogMsgV(kLogDebug, format, args); - va_end(args); -} -#endif - -//============================================================================ -#ifdef HS_DEBUGGING -void LogMsgDebug (const wchar_t *format, ...) { - ASSERT(format); - - va_list args; - va_start(args, format); - LogMsgV(kLogDebug, format, args); - va_end(args); -} -#endif diff --git a/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.h b/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.h index 4a757780..cb72ba32 100644 --- a/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.h +++ b/Sources/Plasma/NucleusLib/pnAsyncCore/Private/pnAcLog.h @@ -80,21 +80,3 @@ void LogMsg (ELogSeverity severity, const char *format, ...); void LogMsg (ELogSeverity severity, const wchar_t *format, ...); void LogMsgV (ELogSeverity severity, const char *format, va_list args); void LogMsgV (ELogSeverity severity, const wchar_t *format, va_list args); - -/**************************************************************************** -* -* Debugging API -* -***/ - -#ifdef HS_DEBUGGING - - void LogMsgDebug (const char *format, ...); - void LogMsgDebug (const wchar_t *format, ...); - -#else - - inline void LogMsgDebug (const char *, ...) { } - inline void LogMsgDebug (const wchar_t *, ...) { } - -#endif