How do I enable debug logging for the Jira Fisheye plugin?
For Plugin versions prior to 3.0
You can enable DEBUG logging for the Jira Fisheye plugin temporarily (until Jira is shutdown) by accessing the following URL in a web browser when logged in as an administrator:
http://YOUR-JIRA-BASE-URL/secure/admin/ConfigureLogging.jspa?loggerName=com.atlassian.jira.ext.fisheye&levelName=DEBUG
To enable debug logging across Jira restarts, update the CLASS-SPECIFIC LOGGING LEVELS section of your WEB-INF/classes/log4j.properties
file by inserting the following:
log4j.category.com.atlassian.jira.ext.fisheye = DEBUG, console, filelog
log4j.additivity.com.atlassian.jira.ext.fisheye = false
and restarting Jira.
For Plugin versions 3.0+
You can enable DEBUG logging for the Jira Fisheye plugin temporarily (until Jira is shutdown) by accessing the following URL in a web browser when logged in as an administrator:
http://YOUR-JIRA-BASE-URL/secure/admin/ConfigureLogging.jspa?loggerName=com.atlassian.jirafisheyeplugin&levelName=DEBUG
To enable debug logging across Jira restarts, update the CLASS-SPECIFIC LOGGING LEVELS section of your WEB-INF/classes/log4j.properties
file by inserting the following:
log4j.category.com.atlassian.jirafisheyeplugin = DEBUG, console, filelog
log4j.additivity. com.atlassian.jirafisheyeplugin = false
and restarting Jira.