Support for Atlassian Server Products (and apps like BigPicture) has ended in February 2024.

Are you planning a migration to Cloud? Make sure you don't lose your BigPicture data/configurations in the process. Check out this page for information on how to migrate BigPicture's data to Cloud. If you have any questions please email support@appfire.com

Creating a Dedicated BigPicture Log File

How to set up a separate log file for BigPicture debug data.


If you get a sizeable amount of BigPicture debug data sent to atlassian-jira.log but would instead divert it to a dedicated log file, you can do it by manually changing the configuration of Jira’s log4j file.

Here’s how to do it:

1. Add the following snippet to your log4j.properties* file:

log4j.appender.bigpicture=com.atlassian.jira.logging.JiraHomeAppender

log4j.appender.bigpicture.File=bigpicture.log

log4j.appender.bigpicture.MaxFileSize=20480KB

log4j.appender.bigpicture.MaxBackupIndex=5

log4j.appender.bigpicture.layout=com.atlassian.logging.log4j.NewLineIndentingFilteringPatternLayout

log4j.appender.bigpicture.layout.ConversionPattern=%d %p [%X{jira.mailserver}] %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} %m%n

log4j.logger.com.softwareplant = INFO, console, bigpicture

log4j.additivity.com.softwareplant = false

2. Restart your Jira instance.

This will create a separate bigpicture.log file for all logs from our app or com.softwareplant package specifically.

Where to find the log4.properties file?

The log4.properties is located in "WEB-INF/classes/log4j.properties." You can find this path by going to your Jira Administration > System > Logging and profiling, and scrolling down to the "Default Loggers" section:

Logging-and-Profiling-BigPicture-demo.png

You can further configure the granularity of the log file and choose the desired logging levels:

This is it. You've just set up a separate log file for BigPicture debug data.