| Author |
log method of servlet context
|
Phillipe Rodrigues
Ranch Hand
Joined: Oct 30, 2007
Posts: 165
|
|
log public void log(java.lang.String msg) log public void log(java.lang.Exception exception, java.lang.String msg) log public void log(java.lang.String message, java.lang.Throwable throwable) With the above log methods of the ServletContext,where the log file gets created.Where can we view those logs?
|
Thanks,
|
 |
sudhir nim
Ranch Hand
Joined: Aug 29, 2007
Posts: 212
|
|
Where the log files are created is depends on which web server you are using. For tomcat, you can see the log files under directory. TOMCAT_HOME/logs/ And by default,logs goes to file. TOMCAT_HOME/logs/localhost.<CURRENT DATE>.txt
|
[Servlet tutorial] [Servlet 3.0 Cook Book]
|
 |
 |
|
|
subject: log method of servlet context
|
|
|