Provide an Exception Logging Implementation

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2508

This topic has not yet been written. The content below is from the topic description.
In order to provide your own implementation you must implement the ErrorHandler interface, which provides the handle(ErrorContext context) method. ErrorContext provides a reference to the primary LuceneWork instance, the underlying exception and any subsequent LuceneWork instances that could not be processed due to the primary exception. public interface ErrorContext { List getFailingOperations(); LuceneWork getOperationAtFault(); Throwable getThrowable(); boolean hasErrors(); } To register this error handler with Hibernate Search you must declare the fully qualified classname of your ErrorHandler implementation in the configuration properties: hibernate.search.error_handler CustomerErrorHandler