views:

181

answers:

1

I use hibernate for persistence. when i call the method :

Session s = getCurrentSession();
s.flush();

i geth the following message :

[toString() unavailable - no suspended threads]

and it just stops running after the s.flush() method.

I'm using JBoss IDE 1.6 and the message is shown within the Variables window when debugging.

do you have any idea how to solve that ?

+1  A: 

Doesn't the message say it all: toString() is unavailable as no thread is suspended. If you want to see the actual value in your debugging view, well, suspend a thread.

sfussenegger