diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 18:51:34 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 18:51:34 +0100 |
commit | 57dedd585c248361a8f5ef902d13bc2354447500 (patch) | |
tree | 398d8e0df78fcf50178edeab01c4c49cec4e48a9 /source/cMCLogger.cpp | |
parent | Logging: added LOGD macro that logs only in debug builds (diff) | |
download | cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar.gz cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar.bz2 cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar.lz cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar.xz cuberite-57dedd585c248361a8f5ef902d13bc2354447500.tar.zst cuberite-57dedd585c248361a8f5ef902d13bc2354447500.zip |
Diffstat (limited to 'source/cMCLogger.cpp')
-rw-r--r-- | source/cMCLogger.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/cMCLogger.cpp b/source/cMCLogger.cpp index c1571a195..e966e7788 100644 --- a/source/cMCLogger.cpp +++ b/source/cMCLogger.cpp @@ -1,7 +1,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-#include <cstdarg>
#include <time.h>
#include "cLog.h"
@@ -186,3 +185,7 @@ void LOGERROR(const char* a_Format, ...) cMCLogger::GetInstance()->Error( a_Format, argList );
va_end(argList);
}
+
+
+
+
|