We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3d17c commit ceead77Copy full SHA for ceead77
hibernate-entitymanager/src/main/java/org/hibernate/jpa/boot/internal/PersistenceXmlParser.java
@@ -108,7 +108,7 @@ public List<ParsedPersistenceXmlDescriptor> doResolve(Map integration) {
108
}
109
110
private List<ParsedPersistenceXmlDescriptor> parsePersistenceXml(URL xmlUrl, Map integration) {
111
- LOG.tracef( "Attempting to parse persistence.xml file : %s" + xmlUrl.toExternalForm() );
+ LOG.tracef( "Attempting to parse persistence.xml file : %s", xmlUrl.toExternalForm() );
112
113
final Document doc = loadUrl( xmlUrl );
114
final Element top = doc.getDocumentElement();
0 commit comments