Skip to content

Logging

This section describes how logging works in the solution.

The solution uses the Log4j2 library to manage logging. Each component of the solution has different loggers. The configuration file is located in the [installation directory]/etc folder and is called log4j2.xml.

Server Logging

For the server, by default, the application comes with several loggers:

  • wrapper-log : logger that captures the application console messages.
  • server-log : logger that writes what happens on the server.
  • extension-log : logger that writes what happens during the execution of various extensions.
  • audit-log : logger that writes different audit events.
  • transfer-log : logger that writes file transfers.
  • task-log : logger that writes the current state of the task scheduler.
  • configurator-log : logger that writes the administration console events.

Gateway Logging

For the gateway, by default, the application comes with several loggers:

  • gateway-log : logger that writes what happens on the gateway.
  • gui-log : logger that writes what happens in the web interface.

References