aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
index 9633963..3ccbe79 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
@@ -70,8 +70,10 @@ namespace OpenSim.Region.Communications.OGS1
70 requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID); 70 requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID);
71 Console.WriteLine("Request for Inventory sent"); 71 Console.WriteLine("Request for Inventory sent");
72 } 72 }
73 catch (Exception) 73 catch (Exception e)
74 { 74 {
75 Console.WriteLine(e.Message);
76 Console.WriteLine(e.StackTrace);
75 } 77 }
76 } 78 }
77 79