From aed9fbb5a8117314c95524070725862d7fa9c21d Mon Sep 17 00:00:00 2001 From: NathanHandley Date: Sun, 21 Sep 2025 11:14:03 -0500 Subject: [PATCH] Logging output bug fixed (text only) --- src/AuctionHouseBot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AuctionHouseBot.cpp b/src/AuctionHouseBot.cpp index 5de5d9e..b10b178 100644 --- a/src/AuctionHouseBot.cpp +++ b/src/AuctionHouseBot.cpp @@ -947,7 +947,7 @@ void AuctionHouseBot::AddNewAuctions(Player* AHBplayer, FactionSpecificAuctionHo itemsGenerated++; } if (debug_Out) - LOG_INFO("module", "AHSeller: Added {} newItemsToListCount", itemsGenerated); + LOG_INFO("module", "AHSeller: Added {} items", itemsGenerated); } void AuctionHouseBot::AddNewAuctionBuyerBotBid(Player* AHBplayer, FactionSpecificAuctionHouseConfig *config)