matthias
matthias

Reputation: 2062

EclipseLink logging level in GlassFish

I have set glassfish 3.1.2's logging level as follows:

org.eclipse.persistence.session = INFO
org.eclipse.persistence.session.file = INFO

But I do get the following output of level FINER:

[#|2015-11-19T11:31:37.322+0100|FINER|glassfish3.1.2|org.eclipse.persistence.session.file:/C:/Development/glassfish3/glassfish/domains/domain1/applications/aip/lib/jpa-1.0-SNAPSHOT.jar_primary.connection|_ThreadID=88;_ThreadName=Thread-2;ClassName=null;MethodName=null;|client released|#]

Upvotes: 0

Views: 488

Answers (1)

Ondro Mihályi
Ondro Mihályi

Reputation: 7695

The message with level FINER comes from eclipselink JPA implementation, which is a component of glassfish, but configured separately. You need to configure this logging in persistence.xml

Upvotes: 1

Related Questions