Re: [JBoss-user] Standard output in JBoss

2001-06-07 Thread David Ward
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

[JBoss-user] Standard output in JBoss

2001-06-06 Thread Simon Moses
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