chore(Core/Logging): replace most server loggers (#5726)

* chore(Core/Logging): replace most server loggers

Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
This commit is contained in:
Kargatum 2021-06-21 08:07:12 +07:00 committed by GitHub
parent 9f80a592bb
commit 5787d00d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
199 changed files with 2312 additions and 4487 deletions

View file

@ -84,7 +84,7 @@ void WorldRunnable::run()
void AuctionListingRunnable::run()
{
LOG_INFO("server", "Starting up Auction House Listing thread...");
LOG_INFO("auctionHouse", "Starting up Auction House Listing thread...");
while (!World::IsStopped())
{
if (AsyncAuctionListingMgr::IsAuctionListingAllowed())
@ -122,5 +122,5 @@ void AuctionListingRunnable::run()
}
Acore::Thread::Sleep(1);
}
LOG_INFO("server", "Auction House Listing thread exiting without problems.");
LOG_INFO("auctionHouse", "Auction House Listing thread exiting without problems.");
}