I am trying to debug the value of an object in EJB
If I do logger.fine("foo"), then I can see foo, but if I do logger.fine("foo = " + bar) then i cant see anything. So how do I debug in EJB? I am using netbean 6.8 btw
I am trying to debug the value of an object in EJB If I
Share
Are you sure bar.toString() is not throwing some runtime exception? Otherwise it should work.
Try a try…catch block around it to be sure.