Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [eclipselink-users] Logging SQL results

Will do. I'll also look into SessionEventListener.

Thanks,
Gili


James Sutherland wrote:
> 
> ALL is the same as FINEST, EclipseLink never logs the results, as this
> could generate a lot of stuff.  I agree it is sometimes useful though, so
> feel free to log a bug for this.  You can log the results yourself using a
> SessionEventListener (postExecuteQuery()).
> 
> 
> cowwoc wrote:
>> 
>> 
>> Ah! :) Can someone please add this to the documentation?
>> http://wiki.eclipse.org/EclipseLink/Examples/JPA/Logging doesn't mention
>> this logging level or what extra it will log.
>> 
>> Thanks,
>> Gili
>> 
>> 
>> Thomas Paradies wrote:
>>> 
>>> Gili,
>>> 
>>> set eclipselink.logging.level to the finest level (ALL).
>>> 
>>> Thomas 
>>> 
>>> -----Original Message-----
>>> From: eclipselink-users-bounces@xxxxxxxxxxx on behalf of cowwoc
>>> Sent: Mon 9/22/2008 5:52 AM
>>> To: eclipselink-users@xxxxxxxxxxx
>>> Subject: Re: [eclipselink-users] Logging SQL results
>>>  
>>> 
>>> I tracked this problem down to a bug in the way warp-persist is handling
>>> Transaction-per-Request. The same EntityManager was being reused across
>>> different HTTP requests leading to the following behavior:
>>> 
>>> - Request goes to Thread 1. It saves version 10
>>> - Request goes to Thread 2. It saves version 11.
>>> - Request goes to Thread 1. The query returns the cached object (version
>>> 10). When the thread attempts to commit this a OptimisticLockException
>>> is
>>> thrown.
>>> 
>>> I'd still to know how to get EclipseLink to log SQL query results
>>> though...
>>> 
>>> Gili
>>> -- 
>>> 
>> 
>> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Logging-SQL-results-tp19600126p19608822.html
Sent from the EclipseLink - Users mailing list archive at Nabble.com.



Back to the top