I have developed a servlet that outputs the server.log file of my JBoss 7.1 for easier debugging.
What i want to do is to customize the output of JBoss and also display from which war each line of output is generated.
To understand better this is a sample output right now:
What i want is also to output something that will identify from which deployment this output is coming from.
After the URL in each output i noticed a number after the 7001 port that is different for each deployment, but don't know how to associate that with a war file....
Anyone has an idea how i can do that?
Thanks in advance
UPDATE
I found this on the web http://java.dzone.com/articles/configuring-logging-jboss about configuring JBoss but sadly is for another version. Here it explains how to have log4j create different log files per deployment. That would be the ultimate solution for me.