Skip to content

Debug Logging

Server

Completing the below steps will add DEBUG level messages to the esm-server/logs/server_0.log file in your Server deployment

  1. Open esm-server/conf/logging.properties in your favourite text editor
  2. Modify line 25 updating the value from INFO to DEBUG

Agent

Completing the below steps will create a new file called esm-agent-debug-${HOSTNAME}.log in esm-agent/logs

  1. Open esm-agent/bin/log4j2.xml in your favourite text editor
  2. Delete line 28, it contains just the following text "<!--"
  3. Delete line 44, it contains just the following text "-->"
  4. Update line 61 from:
    <!-- <AppenderRef ref="debugLog" level="debug" /> -->
    
    to:
    <AppenderRef ref="debugLog" level="debug" />
    
  5. Update line 66 from:
    level="info"
    
    to:
    level="debug"
    

Last update: April 24, 2023
Created: April 24, 2023