How to change logging level
Changing the logging level for a particular Java class or package can be essential either to view more details about the system performance or hide the annoying default logging.
note
Removed since Control Tower 10.2.
Change log level
Navigate to the Tomcat installation directory.
Create or update
conf/workfusion.properties:# Flag enables/disables the logger listener. logger.listener.enabled = true # Path to properties file with logger level settings. # Should be specified relatively to CATALINA_HOME. logger.listener.filepath = conf/wf-log-levels.properties # Time interval (in milliseconds) between file readings. logger.listener.repeat.interval = 60000 # The start delay (in milliseconds). logger.listener.start.delay = 60000Restart Tomcat.
Restart is only necessary when you create or update properties as described in the first step. It's not required for the steps below.
Create the
conf/wf-log-levels.propertiesfile.Set the required log level in the file, for example,
wf-log-levels.properties:com.freedomoss.objective.model.BshComparator = INFOWait up to 60 seconds.
Any other configuration, except for the log level, can't be changed at runtime.
In case you need to change logging for task activity log, refer to the Log plugin topic.