diff options
author | XTZGZoReX <none@none> | 2009-03-19 21:13:52 +0100 |
---|---|---|
committer | XTZGZoReX <none@none> | 2009-03-19 21:13:52 +0100 |
commit | 9fe43fa9c0bd21f6c203072f19a77a570680ecab (patch) | |
tree | 5592cf3a9b39a04e7e81295408625713a6fdd2bd /src/game/Transports.cpp | |
parent | fd2f768dfd7c877880942477a7d1b1645f5bfab9 (diff) |
* 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
Diffstat (limited to 'src/game/Transports.cpp')
-rw-r--r-- | src/game/Transports.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Transports.cpp b/src/game/Transports.cpp index 865c9ccf0b8..feafa0076dd 100644 --- a/src/game/Transports.cpp +++ b/src/game/Transports.cpp @@ -42,7 +42,7 @@ void MapManager::LoadTransports() barGoLink bar( 1 ); bar.step(); - sLog.outString(); + sLog.outString(""); sLog.outString( ">> Loaded %u transports", count ); return; } @@ -114,7 +114,7 @@ void MapManager::LoadTransports() } while(result->NextRow()); delete result; - sLog.outString(); + sLog.outString(""); sLog.outString( ">> Loaded %u transports", count ); // check transport data DB integrity |