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/AuctionHouseMgr.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/AuctionHouseMgr.cpp')
-rw-r--r-- | src/game/AuctionHouseMgr.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/game/AuctionHouseMgr.cpp b/src/game/AuctionHouseMgr.cpp index 9e905d72564..0e028b62296 100644 --- a/src/game/AuctionHouseMgr.cpp +++ b/src/game/AuctionHouseMgr.cpp @@ -285,7 +285,7 @@ void AuctionHouseMgr::LoadAuctionItems() { barGoLink bar(1); bar.step(); - sLog.outString(); + sLog.outString(""); sLog.outString(">> Loaded 0 auction items"); return; } @@ -325,7 +325,7 @@ void AuctionHouseMgr::LoadAuctionItems() while( result->NextRow() ); delete result; - sLog.outString(); + sLog.outString(""); sLog.outString( ">> Loaded %u auction items", count ); } @@ -336,7 +336,7 @@ void AuctionHouseMgr::LoadAuctions() { barGoLink bar(1); bar.step(); - sLog.outString(); + sLog.outString(""); sLog.outString(">> Loaded 0 auctions. DB table `auctionhouse` is empty."); return; } @@ -349,7 +349,7 @@ void AuctionHouseMgr::LoadAuctions() { barGoLink bar(1); bar.step(); - sLog.outString(); + sLog.outString(""); sLog.outString(">> Loaded 0 auctions. DB table `auctionhouse` is empty."); return; } @@ -359,7 +359,7 @@ void AuctionHouseMgr::LoadAuctions() { barGoLink bar(1); bar.step(); - sLog.outString(); + sLog.outString(""); sLog.outString(">> Loaded 0 auctions. DB table `auctionhouse` is empty."); return; } @@ -430,7 +430,7 @@ void AuctionHouseMgr::LoadAuctions() } while (result->NextRow()); delete result; - sLog.outString(); + sLog.outString(""); sLog.outString( ">> Loaded %u auctions", AuctionCount ); } |