Skip to content

Commit

Permalink
HSEARCH-1970 Do not reuse message ids from the logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed May 17, 2016
1 parent 9d338f8 commit 65a2b37
Showing 1 changed file with 7 additions and 2 deletions.
Expand Up @@ -527,8 +527,8 @@ public interface Log extends BasicLogger {
SearchException duplicateDocumentIdFound(String beanXClassName);

@LogMessage(level = Level.INFO)
@Message(id = 168, value = "Using serialization service %1$s")
void usingSerializationService(String serializerDescription);
@Message(id = 168, value = "Serialization service %2$s being used for index '%1$s'")
void indexManagerUsesSerializationService(String indexName, String serializerDescription);

@Message(id = 169, value = "FieldBridge '%1$s' does not have a objectToString method: field '%2$s' in '%3$s'" +
" The FieldBridge must be a TwoWayFieldBridge or you have to enable the ignoreFieldBridge option when defining a Query")
Expand Down Expand Up @@ -980,4 +980,9 @@ public interface Log extends BasicLogger {
@LogMessage(level = Level.WARN)
@Message(id = 318, value = "The backend name 'lucene' is deprecated. Use 'local' instead")
void deprecatedBackendName();

@LogMessage(level = Level.INFO)
@Message(id = 319, value = "Using serialization service %1$s")
void usingSerializationService(String serializerDescription);

}

0 comments on commit 65a2b37

Please sign in to comment.