Try For Free

Enable detailed logging


For JIRA and Confluence

The logging level can be increased for troubleshooting. To do this, go to the JIRA/Confluence Logging and Profiling (in the Administration section) configuration and add following new entry: 

de.resolution with DEBUG level


Enable DEBUG logging de_resolution.png


After that, the plugin starts detailed logging in the

<JIRA home directory>/log/atlassian-jira.log  

<Confluence home directory>/log/atlassian-confluence.log


For Bitbucket

To increase the plugin logging level for the troubleshooting in Bitbucket, please follow the steps below:

  1. Mark the checkbox Enable debug logging in the Bitbucket Logging and Profiling configurations:

    enable_Bitbucket logging and profiling
    enable_Bitbucket logging and profiling
  2. You can choose now between adding the plugin debug logging packages on startup or at runtime:

    1. On startup

      1. To enable plugin debug logging whenever Bitbucket Server is started, edit the <Bitbucket home directory>/shared/bitbucket.properties file (if this file doesn't exist then you should create it) and add the following line:

        1. logging.logger.de.resolution=DEBUG


    2. At runtime

      1. To enable plugin debug logging once Bitbucket Server has been started, edit the <ADMIN_USERNAME> and  <BASE_URL> part with your information and run the following command in your terminal:

        1. curl -u admin -v -X PUT -d "" -H "Content-Type: application/json" https://<BASE_URL>/rest/api/latest/logs/logger/de.resolution/debug

        After that, the plugin starts detailed logging in the <Bitbucket home directory>/log/atlassian-bitbucket.log.

  3. Restore default logging after enabling debug logging

    1. Please uncheck the checkbox Enable debug logging in the Bitbucket Logging and Profiling configurations and Save your settings.

CleanShot 2021-12-16 at 14.45.20@2x.png
    1. On startup

      1. edit the <Bitbucket home directory>/shared/bitbucket.properties file and remove the following line:

  1. logging.logger.de.resolution=DEBUG


    1. At runtime

      1. To disable debug logging for the de.resolution logger, run this command in a terminal:

  1. curl -u admin -v -X PUT -d "" -H "Content-Type: application/json" https://<BASE_URL>/rest/api/latest/logs/logger/de.resolution/warn