summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-02-02 21:10:31 +0100
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-02-02 21:10:31 +0100
commitd9a9052de733d88e49a2df9f455632c64f2c5b5d (patch)
tree1bf9c5a67322e34a5ff32f4586010d453a1f1c4c /src/Log.cpp
parentRevert "Improved code" (diff)
downloadcuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar.gz
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar.bz2
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar.lz
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar.xz
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.tar.zst
cuberite-d9a9052de733d88e49a2df9f455632c64f2c5b5d.zip
Diffstat (limited to '')
-rw-r--r--src/Log.cpp31
1 files changed, 2 insertions, 29 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index a23a79ccc..2d6be0f59 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -99,7 +99,7 @@ void cLog::ClearLog()
-void cLog::Log(const char * a_Format, va_list argList, bool a_ReplaceCurrentLine)
+void cLog::Log(const char * a_Format, va_list argList)
{
AString Message;
AppendVPrintf(Message, a_Format, argList);
@@ -134,34 +134,7 @@ void cLog::Log(const char * a_Format, va_list argList, bool a_ReplaceCurrentLine
__android_log_print(ANDROID_LOG_ERROR, "MCServer", "%s", Line.c_str() );
//CallJavaFunction_Void_String(g_JavaThread, "AddToLog", Line );
#else
- if (a_ReplaceCurrentLine)
- {
-#ifdef _WIN32
- if (m_LastStringSize == 0)
- {
- m_LastStringSize = Line.length();
- }
- else if (Line.length() < m_LastStringSize) // If last printed line was longer than current, clear this line
- {
- for (size_t X = 0; X != m_LastStringSize; ++X)
- {
- fputs(" ", stdout);
- }
- }
-#else // _WIN32
- fputs("\033[K", stdout); // Clear current line
-#endif
-
- printf("\r%s", Line.c_str());
-
-#ifdef __linux
- fputs("\033[1B", stdout); // Move down one line
-#endif // __linux
- }
- else
- {
- printf("%s", Line.c_str());
- }
+ printf("%s", Line.c_str());
#endif
#if defined (_WIN32) && defined(_DEBUG)