Console and syslog appenders are pre-configured in log4j2.xml, but they're commented out by default.

To enable additional appenders:

  1. Open the conf/log4j2.xml file in a text editor.
  2. Locate the following lines in the <Loggers> element:
    <AsyncLogger name="com.pingidentity" level="DEBUG" additivity="false" includeLocation="false">
        <AppenderRef ref="File"/>
        <!--<AppenderRef ref="CONSOLE" />-->
        <!--<AppenderRef ref="SYSLOG" />-->
    </AsyncLogger>
    Note:

    If you have customized logging to enable logging for additional classes, locate the <AsyncLogger> element that's relevant to the class in question. This class is defined in the <AsyncLogger>name attribute.

  3. Uncomment the <AppenderRef> element that applies to the appender that you want to enable.
    Note:

    PingAccess will rescan the logging configuration within 30 seconds and make the change active automatically.

  4. Save the file.