I have several applications deployed in tomcat 6 that are routed to different virtual hosts, so they all have separate context roots and are called ROOT.war. When tomcat lights up, in catalina.out I see this:
INFO: Deploying web application archive ROOT.war Feb 11, 2011 1:33:55 PM org.apache.catalina.startup.HostConfig deployWAR INFO: Deploying web application archive ROOT.war Feb 11, 2011 1:33:56 PM org.apache.catalina.startup.HostConfig deployWAR INFO: Deploying web application archive ROOT.war Feb 11, 2011 1:33:57 PM org.apache.catalina.startup.HostConfig deployWAR
Application logs are routed to another place, and I canβt say which applications were deployed and in what order.
I want to see the application name from war.xml instead of ROOT.war. Does anyone know a way to do this without turning on debugging and cluttering the log?
source share