An example of i3-log.conf is as follows.
org.zkoss.zk.ui.impl.UiEngineImpl=FINER #Make the log level of the specified class to FINERorg.zkoss.zk.ui.http=DEBUG#Make the log level of the specified package to DEBUG org.zkoss.zk.au.http.DHtmlUpdateServlet=INHERIT#Clear the log level of a specified class such that it inherits what #has been defined above (Default: INFO) org.zkoss.zk.ui=OFF #Turn off the log for the specified package org.zkoss=WARNING #Make all log levels of ZK classes to WARNING except those specified here
Level |
Description |
---|---|
OFF |
Indicates no message at all. |
ERROR |
Indicates providing error messages. |
WARNING |
Indicates providing warning messages. It also implies ERROR. |
INFO |
Indicates providing informational messages. It also implies ERROR and WARNING. |
DEBUG |
Indicates providing tracing information for debugging purpose. It also implies ERROR, WARNING and INFO. |
FINER |
Indicates providing fairly detailed tracing information for debugging purpose. It also implies ERROR, WARNING, INFO and DEBUG |
INHERIT |
Indicates to clear any level being set to the specified package or class. In other words, the log level will be the same as its parent node. |