Specifying log level entries
In the freeform text box, you can specify any number of entries of the form package or class=level.
Adding the .* wildcard expression after a package name configures logging for all subpackages of the specified package. Entries are separated by :..
The minimum recommended log detail level is the info level, which searches for errors and important informational messages. The finer level generates entry/exit logging, which you can use in a production environment for less verbose debugging than the finest level. The finest level includes all debug-level logging. The debug information is the most verbose, and is not recommended in a production environment, except for temporary troubleshooting.
The following are some examples of logging configuration for various functional areas:
- Entry/exit logging for web services calls:
com.ibm.content.fn.webservices.*=finer - Entry/exit logging for REST handler:
com.ibm.content.fn.app.*=finer - Entry/exit logging for REST search handler:
com.ibm.p8qs.search.*=finer - Debug logging for the entire application:
com.ibm.content.fn.*=finest:com.ibm.fn.*=finest:com.ibm.p8qs.*=finest: com.ibm.ecm.*=finest: com.ibm.content.cm.search.*=finest