-
1. Re: Tracing what happens before EARDeployer starts
starksm64 Jan 16, 2007 10:30 PM (in response to smokingapipe)Its a pure logging issue. You will have to start with debugging the org.jboss.logging.Logger calls. None of the deployers have dropped messages. Something has screwed up where the Logger plugin.
-
2. Re: Tracing what happens before EARDeployer starts
smokingapipe Jan 16, 2007 10:43 PM (in response to smokingapipe)Ok, I need to start tracing on the org.jboss.logging.Logger. The one way to always get a message to the console, regardless of how (mis) configured loggers and System.out can be, is (thanks to Java 6) System.console.printf() so I can make an instrumented version of the org.jboss.logging.Logger. Time for me to learn how to build JBoss parts and get them installed. I will post what I find.
-
3. Re: Tracing what happens before EARDeployer starts
smokingapipe Jan 17, 2007 1:22 AM (in response to smokingapipe)And the problem is solved. One of the applications on the server was misbehaving and somehow disabling the entire logging system and System.out globally. It would be nice if JBoss would somehow block that from happening or at least intercept it and log a warning, but anyway, it's the fault of the web app.
-
4. Re: Tracing what happens before EARDeployer starts
juha Jan 24, 2007 6:48 AM (in response to smokingapipe)RuntimePermission.setIO
But I've never tried running AS with security manager enabled.