aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorMW2007-12-14 12:06:29 +0000
committerMW2007-12-14 12:06:29 +0000
commitedb1c732fa95fcb6830e5c33e8196b904448301f (patch)
tree6f7258d4545c8cb24616ee74ffca9814f9c98b32 /OpenSim/Region
parentAdded some extra debug console output to Inventory Server and region OGS1 inv... (diff)
downloadopensim-SC_OLD-edb1c732fa95fcb6830e5c33e8196b904448301f.zip
opensim-SC_OLD-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.gz
opensim-SC_OLD-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.bz2
opensim-SC_OLD-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.xz
more inventory debugging output added to region server.
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