From 8d43ab8cb47355b537570a797ee70d07ac3914d0 Mon Sep 17 00:00:00 2001 From: Atidot3 Date: Thu, 25 Jul 2024 23:22:10 +0200 Subject: [PATCH] fix log --- src/strategy/actions/SuggestWhatToDoAction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strategy/actions/SuggestWhatToDoAction.cpp b/src/strategy/actions/SuggestWhatToDoAction.cpp index 81c5f540..95c933cd 100644 --- a/src/strategy/actions/SuggestWhatToDoAction.cpp +++ b/src/strategy/actions/SuggestWhatToDoAction.cpp @@ -350,7 +350,7 @@ void SuggestWhatToDoAction::spam(std::string msg, uint8 flags, bool worldChat, b else { chn->Say(bot->GetGUID(), msg.c_str(), LANG_UNIVERSAL); - LOG_DEBUG("playerbots", "send grind {} - {}", bot->GetName().c_str(), msg.c_str()); + LOG_INFO("playerbots", "{} - {} channel {}", bot->GetName().c_str(), msg.c_str(), chn->GetName()); } } @@ -360,7 +360,7 @@ void SuggestWhatToDoAction::spam(std::string msg, uint8 flags, bool worldChat, b if (Channel* chn = cMgr->GetChannel(randomName, bot)) { chn->Say(bot->GetGUID(), msg.c_str(), LANG_UNIVERSAL); - LOG_DEBUG("playerbots", "send grind {} - {}", bot->GetName().c_str(), msg.c_str()); + LOG_INFO("playerbots", "{} - {} channel {}", bot->GetName().c_str(), msg.c_str(), chn->GetName()); } }