Google

Enabling debug logging

To help with troubleshooting or monitoring, you can optionally turn on activity logging for PingFederate, the Google Chrome Enterprise Device Trust IdP Adapter, or both.

About this task

You can use logging for troubleshooting or analytics.

For general information about logging, see Enabling debug messages and console logging in the PingFederate documentation.

Steps

  1. Open the <pf_install>/pingfederate/server/default/conf/log4j2.xml file for editing.

  2. To log activity for PingFederate and all adapters:

    1. Find the following section:

      <AsyncRoot level="INFO" includeLocation="false">
      	<!-- <AppenderRef ref="CONSOLE" /> -->
      	<AppenderRef ref="FILE" />
      </AsyncRoot>
    2. Change INFO to DEBUG:

      <AsyncRoot level="DEBUG" includeLocation="false">
      	<!-- <AppenderRef ref="CONSOLE" /> -->
      	<AppenderRef ref="FILE" />
      </AsyncRoot>
    3. Optional: To see the adapter activity in the console, remove the comment tags that surround the CONSOLE line:

      <AsyncRoot level="INFO" includeLocation="false">
      	<AppenderRef ref="CONSOLE" />
      	<AppenderRef ref="FILE" />
      </AsyncRoot>
  3. To log activity relating to the Google Chrome Enterprise Device Trust IdP Adapter:

    Choose from:

    • To log activity for the Google Chrome Enterprise Device Trust IdP Adapter as well as its HTTPS and component activity, add the following line:

      <Logger name="com.pingidentity.adapters.google.chrome.enterprise.device.trust" level="DEBUG"/>
    • To log activity for the adapter’s HTTPS activity and other components but not for the adapter itself, add the following line:

      <Logger name="com.pingidentity.adapters.google.chrome.enterprise.device.trust.shade" level="DEBUG"/>
    • To log activity for the Google Chrome Enterprise Device Trust IdP Adapter but not its HTTPS or component activity, add the following lines:

      <Logger name="com.pingidentity.adapters.google.chrome.enterprise.device.trust" level="DEBUG"/>
      <Logger name="com.pingidentity.adapters.google.chrome.enterprise.device.trust.shade" level="INFO"/>
  4. Save the file.