Debug logging
From Resin 3.0
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Troubleshooting]] | ||
+ | |||
Resin provides a number of diagnostic messages using the JDK logging facility. Full debug logging is enabled with an empty name (meaning match all names) and a level of 'finer'. Since this will produce many messages, it is useful to put the messages in a a seperate file. | Resin provides a number of diagnostic messages using the JDK logging facility. Full debug logging is enabled with an empty name (meaning match all names) and a level of 'finer'. Since this will produce many messages, it is useful to put the messages in a a seperate file. | ||
== Full debug logging of the server and all applications == | == Full debug logging of the server and all applications == | ||
+ | |||
+ | === To the console === | ||
+ | |||
+ | <resin> | ||
+ | ... | ||
+ | <log name="" level="finer" path="stdout:"/> | ||
+ | ... | ||
+ | </resin> | ||
+ | |||
+ | === To a file === | ||
The following configuration creates a debug log for each day, and when a problem occurs the debug log is used to help find out what the problem is. Since the <[[log]]> entry is in resin.conf, the log will capture messages from the server itself and all applications. The resulting log messages are found in the file $RESIN_HOME/log/debug.log. | The following configuration creates a debug log for each day, and when a problem occurs the debug log is used to help find out what the problem is. Since the <[[log]]> entry is in resin.conf, the log will capture messages from the server itself and all applications. The resulting log messages are found in the file $RESIN_HOME/log/debug.log. | ||
Full debug logging of the server to $RESIN_HOME/log/debug.log | Full debug logging of the server to $RESIN_HOME/log/debug.log | ||
− | + | ||
<resin> | <resin> | ||
... | ... | ||
Line 13: | Line 25: | ||
</resin> | </resin> | ||
− | More specific areas can be targetted with appropriate values for name. The documentation for | + | More specific areas can be targetted with appropriate values for name. The documentation for [[log]] provides a table of useful values for name. |
== Full debug logging of one web application == | == Full debug logging of one web application == | ||
− | Often you can narrow down the logging requirements to a single web application. The log entry can be placed in [[web.xml]] and only log messages from that web application will | + | Often you can narrow down the logging requirements to a single web application. The log entry can be placed in [[web.xml]] and only log messages from that web application will get logged. |
+ | |||
+ | === To the console === | ||
+ | |||
+ | <web-app> | ||
+ | ... | ||
+ | <log name="" level="finer" path="stdout:"/> | ||
+ | ... | ||
+ | </web-app> | ||
+ | |||
+ | === To a file === | ||
The following configuration creates a debug log for each day in <web-app-root>/WEB-INF/work/debug.log. | The following configuration creates a debug log for each day in <web-app-root>/WEB-INF/work/debug.log. |
Latest revision as of 20:13, 28 March 2006
Resin provides a number of diagnostic messages using the JDK logging facility. Full debug logging is enabled with an empty name (meaning match all names) and a level of 'finer'. Since this will produce many messages, it is useful to put the messages in a a seperate file.
Contents |
[edit] Full debug logging of the server and all applications
[edit] To the console
<resin> ... <log name="" level="finer" path="stdout:"/> ... </resin>
[edit] To a file
The following configuration creates a debug log for each day, and when a problem occurs the debug log is used to help find out what the problem is. Since the <log> entry is in resin.conf, the log will capture messages from the server itself and all applications. The resulting log messages are found in the file $RESIN_HOME/log/debug.log.
Full debug logging of the server to $RESIN_HOME/log/debug.log
<resin> ... <log name="" level="finer" path="log/debug.log"/> ... </resin>
More specific areas can be targetted with appropriate values for name. The documentation for log provides a table of useful values for name.
[edit] Full debug logging of one web application
Often you can narrow down the logging requirements to a single web application. The log entry can be placed in web.xml and only log messages from that web application will get logged.
[edit] To the console
<web-app> ... <log name="" level="finer" path="stdout:"/> ... </web-app>
[edit] To a file
The following configuration creates a debug log for each day in <web-app-root>/WEB-INF/work/debug.log.
Full debug logging of one application to <web-app-root>/WEB-INF/work/debug.log
<web-app> ... <log name="" level="finer" path="WEB-INF/work/debug.log"/> ... </web-app>