Interface Log
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
@MessageLogger(projectCode="ISPN") @ValidIdRange(min=14501, max=14800) public interface Log extends org.jboss.logging.BasicLogger
Log abstraction for the search mapper module. For this module, message ids ranging from 14501 to 14800 inclusively have been reserved.- Since:
- 12.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
errorProcessingIndexingOperation(Throwable cause)
org.hibernate.search.util.common.SearchException
errorRetrievingTypeModel(Class<?> clazz, Exception cause)
org.hibernate.search.util.common.SearchException
invalidEntityName(String entityName)
org.hibernate.search.util.common.SearchException
invalidEntitySuperType(String entityName, Class<?> expectedSuperType, Class<?> actualJavaType)
org.hibernate.search.util.common.SearchException
multipleEntityTypesWithSameName(String entityName, Class<?> previousType, Class<?> type)
org.hibernate.search.util.common.SearchException
namedTypesNotSupported(String name)
org.hibernate.search.engine.environment.classpath.spi.ClassLoadingException
unableToLoadTheClass(String className, Throwable cause)
-
Methods inherited from interface org.jboss.logging.BasicLogger
debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
-
-
-
-
Method Detail
-
errorRetrievingTypeModel
@Message(id=14501, value="Exception while retrieving the type model for \'%1$s\'.") org.hibernate.search.util.common.SearchException errorRetrievingTypeModel(@FormatWith(org.hibernate.search.util.common.logging.impl.ClassFormatter.class) Class<?> clazz, @Cause Exception cause)
-
multipleEntityTypesWithSameName
@Message(id=14502, value="Multiple entity types configured with the same name \'%1$s\': \'%2$s\', \'%3$s\'") org.hibernate.search.util.common.SearchException multipleEntityTypesWithSameName(String entityName, Class<?> previousType, Class<?> type)
-
namedTypesNotSupported
@Message(id=14503, value="Infinispan Search Mapper does not support named types. The type with name \'%1$s\' does not exist.") org.hibernate.search.util.common.SearchException namedTypesNotSupported(String name)
-
unableToLoadTheClass
@Message(id=14504, value="Unable to load class [%1$s]") org.hibernate.search.engine.environment.classpath.spi.ClassLoadingException unableToLoadTheClass(String className, @Cause Throwable cause)
-
invalidEntityName
@Message(id=14505, value="Unknown entity name: \'%1$s\'.") org.hibernate.search.util.common.SearchException invalidEntityName(String entityName)
-
invalidEntitySuperType
@Message(id=14506, value="Invalid type for \'%1$s\': the entity type must extend \'%2$s\', but entity type \'%3$s\' does not.") org.hibernate.search.util.common.SearchException invalidEntitySuperType(String entityName, @FormatWith(org.hibernate.search.util.common.logging.impl.ClassFormatter.class) Class<?> expectedSuperType, @FormatWith(org.hibernate.search.util.common.logging.impl.ClassFormatter.class) Class<?> actualJavaType)
-
errorProcessingIndexingOperation
@LogMessage(level=ERROR) @Message(id=14507, value="Error processing indexing operation.") void errorProcessingIndexingOperation(@Cause Throwable cause)
-
-