Skip to content
Snippets Groups Projects
Commit 1ab46b18 authored by pkupczyk's avatar pkupczyk
Browse files

Better error logging when Lucene index creation fails

SVN: 34200
parent 1fcd4129
No related branches found
No related tags found
No related merge requests found
...@@ -117,8 +117,8 @@ public class TestInitializer ...@@ -117,8 +117,8 @@ public class TestInitializer
IndexCreationUtil.main(databaseKind, temporaryFile.getAbsolutePath(), String.valueOf(getCreateDBFromScratch())); IndexCreationUtil.main(databaseKind, temporaryFile.getAbsolutePath(), String.valueOf(getCreateDBFromScratch()));
} catch (Exception ex) } catch (Exception ex)
{ {
operationLog.error(ex); operationLog.error("Couldn't create Lucene index", ex);
CheckedExceptionTunnel.wrapIfNecessary(ex); throw CheckedExceptionTunnel.wrapIfNecessary(ex);
} finally } finally
{ {
String psql = DumpPreparator.getPSQLExecutable(); String psql = DumpPreparator.getPSQLExecutable();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment