Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.2.1
-
None
-
None
-
Windows 7 64-bit and 64-bit RedHat
Description
I have a persistence.xml at /META-INF/foo/persistence.xml:
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
version="2.0">
<persistence-unit name="agent" transaction-type="RESOURCE_LOCAL">
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
<class>foo.MyClass</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="openjpa.Log" value="slf4j" />
</properties>
</persistence-unit>
</persistence>
Despite specifying slf4j, the built-in logging mechanism is used.
This is the same behavior no matter what value I provide (log4j, none, etc) or if I remove the <properties> tag altogether.