Printing a Stack Trace to the Server Console
Printing a Stack Trace to the Server Console
<%
try{
int value = 1;
value = value / 0;
}
catch (Exception e){
e.printStackTrace();
}
%>