Commit 635a188b authored by guus's avatar guus

OF-507: Improve exception logging.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@12946 b35dd754-fafc-0310-a699-88a17e54d16e
parent fffd6bae
...@@ -357,7 +357,9 @@ public class RosterItemProvider { ...@@ -357,7 +357,9 @@ public class RosterItemProvider {
pstmt.executeUpdate(); pstmt.executeUpdate();
} }
catch (SQLException e) { catch (SQLException e) {
Log.error(e.getMessage(), e); Log.error("Unable to insert group with name '" + groupName
+ "' (rank: '" + i + "')into roster with id '"
+ rosterID + "'.", e);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment