Check log after log.info() calls have been made from a groovy script
It should be in JIRA_HOME/log
If you are using Scriptrunner there is the history of the last 15 execution that display the log by clicking on the faild or success logo.
If you are not able to see it in the file, you need to change the log level or log using log.error()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA_HOME is on the server and the path that have been defined during the installation.
If you want to set the log level within the script you can do it like that:
import org.apache.log4j.Logger
import org.apache.log4j.Level
def log = Logger.getLogger("com.test.listener")
log.setLevel(Level.INFO)
log.warn event
log.error event
log.info event
You can also check the log from the JIRA using Scriptrunner by going to Built-in Script in Scriptrunner > view logs and select atlassian-jira.log that is the file you are looking for .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.