From 1b60fe14f888fa5d2199c6839bc190a803b97528 Mon Sep 17 00:00:00 2001 From: faketruth Date: Thu, 16 Feb 2012 12:42:46 +0000 Subject: [PATCH] Disabled the excessive logging while initializing the Core plugin git-svn-id: http://mc-server.googlecode.com/svn/trunk@271 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- Plugins/Core/main.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Plugins/Core/main.lua b/Plugins/Core/main.lua index e057fb4ce..af1a49369 100644 --- a/Plugins/Core/main.lua +++ b/Plugins/Core/main.lua @@ -74,9 +74,7 @@ function Initialize( Plugin ) local ItemSyntax = itemsINI:GetValue(KeyID, i, "0") local ItemData = StringSplit(ItemSyntax, ":") -- [1] = ID, [2] = perhaps meta/dmg - --LOGINFO( "#ItemData: " .. #ItemData ) if( #ItemData > 0 ) then - --LOGINFO("ItemData[0]: "..ItemData[1]) local ItemID = tonumber( ItemData[1] ) if( ItemID > 0 ) then local ItemMeta = 0 @@ -84,7 +82,7 @@ function Initialize( Plugin ) ItemMeta = tonumber( ItemData[2] ) end ItemsTable[ ItemName ] = cItem( ItemID, 1, ItemMeta ) - LOGINFO("Got item: " .. ItemName .. "-> " .. ItemsTable[ ItemName ].m_ItemID ..":" .. ItemsTable[ ItemName ].m_ItemHealth ) + --LOGINFO("Got item: " .. ItemName .. "-> " .. ItemsTable[ ItemName ].m_ItemID ..":" .. ItemsTable[ ItemName ].m_ItemHealth ) end end end