From f0f176d66f70247761d55c3db506bfb56e218e3c Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Wed, 5 Jun 2024 19:45:21 +0800 Subject: [PATCH] [Log] Intialization log info --- src/PlayerbotFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PlayerbotFactory.cpp b/src/PlayerbotFactory.cpp index 3b4277c6..b7655e74 100644 --- a/src/PlayerbotFactory.cpp +++ b/src/PlayerbotFactory.cpp @@ -178,8 +178,8 @@ void PlayerbotFactory::Randomize(bool incremental) // { // return; // } - - LOG_DEBUG("playerbots", "Preparing to {} randomize...", (incremental ? "incremental" : "full")); + LOG_INFO("playerbots", "{} randomizing {} (level {} class = {})...", (incremental ? "Incremental" : "Full"), bot->GetName().c_str(), bot->GetLevel(), bot->getClass()); + // LOG_DEBUG("playerbots", "Preparing to {} randomize...", (incremental ? "incremental" : "full")); Prepare(); LOG_DEBUG("playerbots", "Resetting player..."); PerformanceMonitorOperation* pmo = sPerformanceMonitor->start(PERF_MON_RNDBOT, "PlayerbotFactory_Reset");