Simon,
It looks like (because of the ) that code is in a jsp of yours. If
that's true, out.println(String) does not go to standard output; it goes
to the response stream back to the browser (do a view/source in your
browser and you should see it).
If you want to go to real standard output, c
Hi
there,
I am trying to activate some debug in the petstore
application. The code is below:
if (verbose)
{
out.println("Connection is " +
con);
out.flush();
}
However, when
I start JBoss with the application, the debug does not seem to appear
any