From 9fe43fa9c0bd21f6c203072f19a77a570680ecab Mon Sep 17 00:00:00 2001 From: XTZGZoReX Date: Thu, 19 Mar 2009 21:13:52 +0100 Subject: * Implementing database logging: ** LogTime and LogColors config options removed due to incompatibility. ** Old file logging still available. ** Totally redone the Log class. ** Config options added: EnableLogDB, DBLogLevel, LogDB.Char, LogDB.RA, LogDB.GM -- remember to update config file. ** SQL updates attached. --HG-- branch : trunk --- src/shared/ByteBuffer.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/shared/ByteBuffer.h') diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h index b61cefb1a05..5f8a584eb0f 100644 --- a/src/shared/ByteBuffer.h +++ b/src/shared/ByteBuffer.h @@ -365,9 +365,6 @@ class ByteBuffer uint32 j = 1, k = 1; sLog.outDebug("STORAGE_SIZE: %u", size() ); - if(sLog.IsIncludeTime()) - sLog.outDebugInLine(" "); - for(uint32 i = 0; i < size(); i++) { if ((i == (j*8)) && ((i != (k*16)))) @@ -387,16 +384,12 @@ class ByteBuffer if (read(i) < 0x0F) { sLog.outDebugInLine("\n"); - if(sLog.IsIncludeTime()) - sLog.outDebugInLine(" "); sLog.outDebugInLine("0%X ", read(i) ); } else { sLog.outDebugInLine("\n"); - if(sLog.IsIncludeTime()) - sLog.outDebugInLine(" "); sLog.outDebugInLine("%X ", read(i) ); } -- cgit v1.2.3