Versions Compared

Key

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

Table of Contents

Temporary Logging

Notification log

Every notification sent from the Notification Assistant for JIRA plugin.

...

  1. Go to JIRA Administration>System>Logging and profiling

  2. Under Default Loggers, click "configure logging level for another package"

  3. For Package name enter com.riadalabs.jira.plugins.notificationassistant.

...

REST-API log

Every REST call sent from the Notification Assistant for JIRA plugin.

...

  1. NotificationEmailHandlerImpl

  2. For Package name enterĀ com.riadalabs.jira.plugins.notificationassistant.NotificationManagerImpl

  3. For Logging Level select INFO or DEBUG depending on how much logging they want (DEBUG for more)

  4. Press Add to save

  5. Email log

...

  1. output will now be added to JIRA's own atlassian-jira.log file

Permanent Logging

Add the following to your <JIRA INSTALL DIRECTORY>/atlassian-jira/WEB-INF/classes/log4j.propertiesĀ file. Changes to this file require a restart of Jira for the changes to take effect.

No Format
# ---------------------
#
#  NAFJ LOGGING STARTS
#

# Email logger
#
log4j.appender.NAFJEmailLog=com.atlassian.jira.logging.JiraHomeAppender
log4j.appender.NAFJEmailLog.File=nafj-email.log
log4j.appender.NAFJEmailLog.MaxFileSize=20480KB
log4j.appender.NAFJEmailLog.MaxBackupIndex=5
log4j.appender.NAFJEmailLog.layout=org.apache.log4j.PatternLayout
log4j.appender.NAFJEmailLog.layout.ConversionPattern=%d %t %p [%c{4}] %m%n
log4j.appender.NAFJEmailLog.Threshold=INFO

# Notification Manager logger
#
log4j.appender.NAFJManagerLog=com.atlassian.jira.logging.JiraHomeAppender
log4j.appender.NAFJManagerLog.File=nafj-manager.log
log4j.appender.NAFJManagerLog.MaxFileSize=20480KB
log4j.appender.NAFJManagerLog.MaxBackupIndex=5
log4j.appender.NAFJManagerLog.layout=org.apache.log4j.PatternLayout
log4j.appender.NAFJManagerLog.layout.ConversionPattern=%d %t %p [%c{4}] %m%n
log4j.appender.NAFJManagerLog.Threshold=INFO

#
# add entries for all NAFJ packages
#
log4j.logger.com.riadalabs.jira.plugins.notificationassistant.NotificationEmailHandlerImpl=INFO, NAFJEmailLog
log4j.additivity.com.riadalabs.jira.plugins.notificationassistant.NotificationEmailHandlerImpl=false
log4j.logger.com.riadalabs.jira.plugins.notificationassistant.NotificationManagerImpl=INFO, NAFJManagerLog
log4j.additivity.com.riadalabs.jira.plugins.notificationassistant.NotificationManagerImpl=false

#
#  NAFJ LOGGING ENDS
#
# --------------------

Version Differences

In version 6.1.1 and before the logs will be at:

  • <JIRA_HOME>/data/attachments/nafj/log/email.log
  • <JIRA_HOME>/data/attachments/nafj/log/rest.log

For version 6.1.2 and later, the The logs will be at:

  • <JIRA_HOME>/log/nafj-email.log
  • <JIRA_HOME>/log/nafj-manager.log