diff options
author | UbitUmarov | 2014-09-26 02:52:44 +0100 |
---|---|---|
committer | UbitUmarov | 2014-09-26 02:52:44 +0100 |
commit | 598ab37b97fc1ff189f61c3416a8732b698a76af (patch) | |
tree | e385cb0ee15eeb2c1242f2638f93bfc034a904ce /OpenSim/Region | |
parent | little debug (diff) | |
download | opensim-SC_OLD-598ab37b97fc1ff189f61c3416a8732b698a76af.zip opensim-SC_OLD-598ab37b97fc1ff189f61c3416a8732b698a76af.tar.gz opensim-SC_OLD-598ab37b97fc1ff189f61c3416a8732b698a76af.tar.bz2 opensim-SC_OLD-598ab37b97fc1ff189f61c3416a8732b698a76af.tar.xz |
debug msg
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index e003a59..ac0b69c 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -133,8 +133,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
133 | /// <param name="item"></param> | 133 | /// <param name="item"></param> |
134 | public bool AddInventoryItem(InventoryItemBase item) | 134 | public bool AddInventoryItem(InventoryItemBase item) |
135 | { | 135 | { |
136 | m_log.DebugFormat("[AGENT INVENTORY]: item {0}", item.Name); | ||
137 | |||
136 | if (item.Folder != UUID.Zero && InventoryService.AddItem(item)) | 138 | if (item.Folder != UUID.Zero && InventoryService.AddItem(item)) |
137 | { | 139 | { |
140 | m_log.DebugFormat( | ||
141 | "[AGENT INVENTORY]: added item {0}",item.Name); | ||
142 | |||
138 | int userlevel = 0; | 143 | int userlevel = 0; |
139 | if (Permissions.IsGod(item.Owner)) | 144 | if (Permissions.IsGod(item.Owner)) |
140 | { | 145 | { |