diff options
author | Robert Adams | 2013-08-23 13:53:47 -0700 |
---|---|---|
committer | Robert Adams | 2013-08-23 13:53:47 -0700 |
commit | c34e6f25b1c8df14d62c102283efbf8ea263805c (patch) | |
tree | 621105231ca5f086dd4c021054722571ff8aff3e /OpenSim/Region/CoreModules | |
parent | minor: shortern warning messages in EntityTransferModule when UpdateAgent() f... (diff) | |
download | opensim-SC_OLD-c34e6f25b1c8df14d62c102283efbf8ea263805c.zip opensim-SC_OLD-c34e6f25b1c8df14d62c102283efbf8ea263805c.tar.gz opensim-SC_OLD-c34e6f25b1c8df14d62c102283efbf8ea263805c.tar.bz2 opensim-SC_OLD-c34e6f25b1c8df14d62c102283efbf8ea263805c.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')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 2 |
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 | } |