Tracing Servlet Requests
Tracing through Servlet-based web application log files isn't always as convenient as one may hope. Sure, when using Tomcat, we may rely on the thread names (such ashttp-8080-2
), but sometimes they seem to bleed into each other resulting in a difficult structure to grep
. Compounding this, an ... read more