aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-06-12 23:47:47 +0100
committerJustin Clark-Casey (justincc)2013-06-12 23:47:47 +0100
commit824a4b480873721a4a10598299b185b602e1931d (patch)
tree11b7a20799897f8700daec1c91572167d24d6a36 /OpenSim/Server
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-824a4b480873721a4a10598299b185b602e1931d.zip
opensim-SC_OLD-824a4b480873721a4a10598299b185b602e1931d.tar.gz
opensim-SC_OLD-824a4b480873721a4a10598299b185b602e1931d.tar.bz2
opensim-SC_OLD-824a4b480873721a4a10598299b185b602e1931d.tar.xz
After calls to GetSuitcaseXFolder() in HGSuitcaseInventoryService, consistently check for null return and log warning rather than throw exception.
This was being done already in some places. If an exception is thrown it is now an error rather than debug
Diffstat (limited to 'OpenSim/Server')
-rw-r--r--OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs b/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
index 64127c2..9d28dc3 100644
--- a/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
+++ b/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
@@ -155,7 +155,7 @@ namespace OpenSim.Server.Handlers.Asset
155 } 155 }
156 catch (Exception e) 156 catch (Exception e)
157 { 157 {
158 m_log.DebugFormat("[XINVENTORY HANDLER]: Exception {0}", e.StackTrace); 158 m_log.ErrorFormat("[XINVENTORY HANDLER]: Exception {0}", e.StackTrace);
159 } 159 }
160 160
161 return FailureResult(); 161 return FailureResult();