aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar
diff options
context:
space:
mode:
authorRobert Adams2013-08-23 13:53:47 -0700
committerJustin Clark-Casey (justincc)2013-09-04 00:45:06 +0100
commit6eb1436c550c8486828f6c60fd5db00275c173b7 (patch)
treef5efb53ef4e1e5adcb65b0f0dab5f69157d3377b /OpenSim/Region/CoreModules/Avatar
parentRename pCampbot.ini -> pCampBot.ini (and example file) to be consistent with ... (diff)
downloadopensim-SC_OLD-6eb1436c550c8486828f6c60fd5db00275c173b7.zip
opensim-SC_OLD-6eb1436c550c8486828f6c60fd5db00275c173b7.tar.gz
opensim-SC_OLD-6eb1436c550c8486828f6c60fd5db00275c173b7.tar.bz2
opensim-SC_OLD-6eb1436c550c8486828f6c60fd5db00275c173b7.tar.xz
Fix a printing of exception error in InventoryArchiveModule that only
printed the error message and not the call stack.
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs
index 797097f..5854428 100644
--- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs
@@ -536,7 +536,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
536 } 536 }
537 catch (Exception e) 537 catch (Exception e)
538 { 538 {
539 m_log.ErrorFormat("[INVENTORY ARCHIVER]: Could not authenticate password, {0}", e.Message); 539 m_log.ErrorFormat("[INVENTORY ARCHIVER]: Could not authenticate password, {0}", e);
540 return null; 540 return null;
541 } 541 }
542 } 542 }