Fix a printing of exception error in InventoryArchiveModule that only

printed the error message and not the call stack.
0.7.6-extended
Robert Adams 2013-08-23 13:53:47 -07:00 committed by Justin Clark-Casey (justincc)
parent 41b33b6f0f
commit 6eb1436c55
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
}
catch (Exception e)
{
m_log.ErrorFormat("[INVENTORY ARCHIVER]: Could not authenticate password, {0}", e.Message);
m_log.ErrorFormat("[INVENTORY ARCHIVER]: Could not authenticate password, {0}", e);
return null;
}
}