Skip to content

Commit 7935fca

Browse files
committed
remove another ugly log message from query compiler
1 parent 43019af commit 7935fca

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

hibernate-core/src/main/java/org/hibernate/query/hql/internal/DomainPathPart.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*/
55
package org.hibernate.query.hql.internal;
66

7-
import org.hibernate.query.hql.HqlLogging;
87
import org.hibernate.query.hql.spi.SemanticPathPart;
98
import org.hibernate.query.hql.spi.SqmCreationState;
109
import org.hibernate.query.sqm.tree.domain.SqmPath;
@@ -32,11 +31,11 @@ public SemanticPathPart resolvePathPart(
3231
String name,
3332
boolean isTerminal,
3433
SqmCreationState creationState) {
35-
HqlLogging.QUERY_LOGGER.tracef(
36-
"Resolving DomainPathPart(%s) sub-part : %s",
37-
currentPath,
38-
name
39-
);
34+
// HqlLogging.QUERY_LOGGER.tracef(
35+
// "Resolving DomainPathPart(%s) sub-part : %s",
36+
// currentPath,
37+
// name
38+
// );
4039
currentPath = currentPath.resolvePathPart( name, isTerminal, creationState );
4140
if ( isTerminal ) {
4241
return currentPath;

0 commit comments

Comments
 (0)