diff options
Diffstat (limited to 'OpenSim/Data/NHibernate/NHibernateManager.cs')
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/NHibernate/NHibernateManager.cs b/OpenSim/Data/NHibernate/NHibernateManager.cs index 0ceaf9b..8fca6fe 100644 --- a/OpenSim/Data/NHibernate/NHibernateManager.cs +++ b/OpenSim/Data/NHibernate/NHibernateManager.cs | |||
@@ -140,9 +140,9 @@ namespace OpenSim.Data.NHibernate | |||
140 | { | 140 | { |
141 | obj = session.Get(type.FullName, uuid); | 141 | obj = session.Get(type.FullName, uuid); |
142 | } | 142 | } |
143 | catch (Exception) | 143 | catch (Exception e) |
144 | { | 144 | { |
145 | m_log.ErrorFormat("[NHIBERNATE] {0} not found with ID {1} ", type.Name, uuid); | 145 | m_log.ErrorFormat("[NHIBERNATE] {0} of id {1} loading threw exception: "+ e.ToString(), type.Name, uuid); |
146 | } | 146 | } |
147 | return obj; | 147 | return obj; |
148 | } | 148 | } |