Skip to content

Commit c2e021f

Browse files
committed
fix message id range
1 parent 0e8c741 commit c2e021f

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/BytecodeEnhancementLogging.java

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @author Steve Ebersole
2525
*/
2626
@MessageLogger(projectCode = "HHH")
27-
@ValidIdRange(min = 90005801, max = 90005900)
27+
@ValidIdRange(min = 90009001, max = 90009900)
2828
@SubSystemLogging(
2929
name = BytecodeEnhancementLogging.LOGGER_NAME,
3030
description = "Logging related to bytecode handling"
@@ -36,77 +36,77 @@ public interface BytecodeEnhancementLogging extends BasicLogger {
3636

3737
// ---- trace messages ----
3838
@LogMessage(level = TRACE)
39-
@Message(id = 90005801, value = "Skipping enhancement of [%s]: it's already annotated with @EnhancementInfo")
39+
@Message(id = 90009001, value = "Skipping enhancement of [%s]: it's already annotated with @EnhancementInfo")
4040
void skippingAlreadyAnnotated(String className);
4141

4242
@LogMessage(level = TRACE)
43-
@Message(id = 90005802, value = "Skipping enhancement of [%s]: it's an interface")
43+
@Message(id = 90009002, value = "Skipping enhancement of [%s]: it's an interface")
4444
void skippingInterface(String className);
4545

4646
@LogMessage(level = TRACE)
47-
@Message(id = 90005803, value = "Skipping enhancement of [%s]: it's a record")
47+
@Message(id = 90009003, value = "Skipping enhancement of [%s]: it's a record")
4848
void skippingRecord(String className);
4949

5050
@LogMessage(level = TRACE)
51-
@Message(id = 90005804, value = "Enhancing [%s] as Entity")
51+
@Message(id = 90009004, value = "Enhancing [%s] as Entity")
5252
void enhancingAsEntity(String className);
5353

5454
@LogMessage(level = TRACE)
55-
@Message(id = 90005805, value = "Enhancing [%s] as Composite")
55+
@Message(id = 90009005, value = "Enhancing [%s] as Composite")
5656
void enhancingAsComposite(String className);
5757

5858
@LogMessage(level = TRACE)
59-
@Message(id = 90005806, value = "Enhancing [%s] as MappedSuperclass")
59+
@Message(id = 90009006, value = "Enhancing [%s] as MappedSuperclass")
6060
void enhancingAsMappedSuperclass(String className);
6161

6262
@LogMessage(level = TRACE)
63-
@Message(id = 90005807, value = "Extended enhancement of [%s]")
63+
@Message(id = 90009007, value = "Extended enhancement of [%s]")
6464
void extendedEnhancement(String className);
6565

6666
@LogMessage(level = TRACE)
67-
@Message(id = 90005808, value = "Skipping enhancement of [%s]: not entity or composite")
67+
@Message(id = 90009008, value = "Skipping enhancement of [%s]: not entity or composite")
6868
void skippingNotEntityOrComposite(String className);
6969

7070
@LogMessage(level = TRACE)
71-
@Message(id = 90005809, value = "Weaving in PersistentAttributeInterceptable implementation on [%s]")
71+
@Message(id = 90009009, value = "Weaving in PersistentAttributeInterceptable implementation on [%s]")
7272
void weavingPersistentAttributeInterceptable(String className);
7373

7474
@LogMessage(level = TRACE)
75-
@Message(id = 90005810, value = "mappedBy association for field [%s.%s] is [%s.%s]")
75+
@Message(id = 90009010, value = "mappedBy association for field [%s.%s] is [%s.%s]")
7676
void mappedByAssociation(String ownerName, String fieldName, String targetEntityName, String targetFieldName);
7777

7878
@LogMessage(level = TRACE)
79-
@Message(id = 90005811, value = "Persistent fields for entity %s: %s")
79+
@Message(id = 90009011, value = "Persistent fields for entity %s: %s")
8080
void persistentFieldsForEntity(String entityName, String orderedFields);
8181

8282
@LogMessage(level = TRACE)
83-
@Message(id = 90005812, value = "Found @MappedSuperclass '%s' to collectPersistenceFields")
83+
@Message(id = 90009012, value = "Found @MappedSuperclass '%s' to collectPersistenceFields")
8484
void foundMappedSuperclass(String superClassName);
8585

8686
@LogMessage(level = TRACE)
87-
@Message(id = 90005813, value = "Extended enhancement: Transforming access to field [%s.%s] from method [%s.%s()]")
87+
@Message(id = 90009013, value = "Extended enhancement: Transforming access to field [%s.%s] from method [%s.%s()]")
8888
void extendedTransformingFieldAccess(String ownerType, String fieldName, String methodOwner, String methodName);
8989

9090
// ---- debug messages ----
9191
@LogMessage(level = DEBUG)
92-
@Message(id = 90005820, value = "Skipping re-enhancement version check for '%s' due to 'ignore'")
92+
@Message(id = 90009020, value = "Skipping re-enhancement version check for '%s' due to 'ignore'")
9393
void skippingReEnhancementVersionCheck(String className);
9494

9595
@LogMessage(level = DEBUG)
96-
@Message(id = 90005821, value = "Skipping enhancement of [%s] because no field named [%s] could be found for property accessor method [%s]."
96+
@Message(id = 90009021, value = "Skipping enhancement of [%s] because no field named [%s] could be found for property accessor method [%s]."
9797
+ " To fix this, make sure all property accessor methods have a matching field.")
9898
void propertyAccessorNoFieldSkip(String className, String fieldName, String methodName);
9999

100100
// ---- info messages ----
101101
@LogMessage(level = INFO)
102-
@Message(id = 90005830, value = "Bidirectional association not managed for field [%s.%s]: Could not find target field in [%s]")
102+
@Message(id = 90009030, value = "Bidirectional association not managed for field [%s.%s]: Could not find target field in [%s]")
103103
void bidirectionalNotManagedCouldNotFindTargetField(String ownerName, String fieldName, String targetEntityCanonicalName);
104104

105105
@LogMessage(level = INFO)
106-
@Message(id = 90005831, value = "Bidirectional association not managed for field [%s.%s]: @ManyToMany in java.util.Map attribute not supported ")
106+
@Message(id = 90009031, value = "Bidirectional association not managed for field [%s.%s]: @ManyToMany in java.util.Map attribute not supported ")
107107
void manyToManyInMapNotSupported(String ownerName, String fieldName);
108108

109109
@LogMessage(level = INFO)
110-
@Message(id = 90005832, value = "Bidirectional association not managed for field [%s.%s]: Could not find target type")
110+
@Message(id = 90009032, value = "Bidirectional association not managed for field [%s.%s]: Could not find target type")
111111
void bidirectionalNotManagedCouldNotFindTargetType(String ownerName, String fieldName);
112112
}

0 commit comments

Comments
 (0)