Commit 503ce3e5 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Print the SQL exception if the installation is incorrect so we can have more debugging information.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1147 b35dd754-fafc-0310-a699-88a17e54d16e
parent d898ad26
......@@ -83,6 +83,7 @@
}
catch (SQLException sqle) {
success = false;
sqle.printStackTrace();
errors.put("general","The Jive Messenger database schema does not "
+ "appear to be installed. Follow the installation guide to "
+ "fix this error.");
......
......@@ -90,6 +90,7 @@
}
catch (SQLException sqle) {
success = false;
sqle.printStackTrace();
errors.put("general","The Jive Messenger database schema does not "
+ "appear to be installed. Follow the installation guide to "
+ "fix this error.");
......
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