From 6192acad222c30d00a2344f061425fdab6877c5c Mon Sep 17 00:00:00 2001 From: Elson Costa Date: Mon, 11 Mar 2024 17:51:23 -0300 Subject: [PATCH] item_parse: change logger type. --- src/items/functions/item/item_parse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/functions/item/item_parse.cpp b/src/items/functions/item/item_parse.cpp index e25954cf8c1..a69c4e88ae3 100644 --- a/src/items/functions/item/item_parse.cpp +++ b/src/items/functions/item/item_parse.cpp @@ -1170,7 +1170,7 @@ void ItemParse::createAndRegisterScript(ItemType &itemType, pugi::xml_node attri } if (subValueAttribute.as_bool() == false) { weapon->setDisabledChain(); - g_logger().warn("Chain disabled for weapon: {}", itemType.name); + g_logger().trace("Chain disabled for weapon: {}", itemType.name); } } }