Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Please be aware that with the log level set to DEBUG or TRACE, some of the data written to the log file may be considered private or confidential (e.g. email addresses or even email contents).

In Jira

Set Log Level

  1. Go to JIRA Administration > System

  2. On the left, select Logging and profiling

  3. Scroll down to Default loggers and click on Configure logging level for another package

  4. As package name, enter net.savignano

...

  1.  and select logging level DEBUG

On Linux, the log files will usually be here (but your installation may use a different location):

...

On production instances, preferably set a mark by entering a unique string into the Message field.

In Confluence

  1. Go to Confluence Administration > General Configuration

  2. On the left, scroll down to Logging and Profiling

  3. At Add New Entry, set to Debug and enter net.savignano

...

  1.  as package name

On Linux, the log files will usually be here (but your installation may use a different location):

...

Once you have that app installed, it’s as simple as this:

  1. On the Bitbucket Administration page, click Advanced Logging

  2. At Add New Entry, enter net.savignano

...

  1.  and select logging level DEBUG

Note that this will be unset when Bitbucket is restarted.

...

If you do not have that app and cannot or do not want to install it, the log level can only be adjusted by modifying the logging configuration file. On Linux, it is usually located at /opt/atlassian/bitbucket/app/WEB-INF/classes/logback-spring.xml (or logback.xml before Bitbucket 7.0).

  1. Open the file in an editor, and after the last existing <logger .. /> entry, add the following lines:

Code Block
languagexml
    <!-- S/Notify logging -->
    <logger name="net.savignano.snotify" level="DEBUG"/>

2. To activate the configuration, it is required to restart Bitbucket.

...