Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Opened the file for viewing. Added links to parameters description in AppServer Parameters section.

...

3. Locate the Log tag. Inside this tag, find PrioritizationLevel tag and change the level of logging from information to debug as shown below:

...

Code Block
languagexml
themeEmacs
<Log>
	<!-- Size parameter defines the maximum size of the AppServerX.log file in kilobytes. 
If the maximum size is reached, a new log file will be created 
and the previous one will be saved with appropriate time stamp (log rotation). -->
 	<Size>10000</Size>
	<!-- Log prioritization level. Possible values (from the highest priority to the lowest): 
none, fatal, critical, error, warning, notice, information, 
debug, trace. The default is "information" -->
	<PrioritizationLevel>information</PrioritizationLevel>
	<!-- Possible values: all or general, threadpool, licensing, failsafe, selector, responder or values delimited by comma(,). 
The default is "all" -->
	<Subsystems>all</Subsystems>
</Log>

In code sample above: 

  • Size tag is used to define to the maximum file of AppServerX.log file in kilobytes.
  • Subsystem tag is used to specify the logs filter. Each log entry is generated by a particular system. You can use one of the available options to enable recording the logs for the selected subsystem only. By default, all value is selected meaning all subsystems record their messages into the log files directory.